aboutsummaryrefslogtreecommitdiff
path: root/src/PollSource.py
blob: b549b24e4928af37dad174a71f74ca1ab38ef463 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import typing

class PollSource(object):
    def get_readables(self) -> typing.List[int]:
        return []
    def get_writables(self) -> typing.List[int]:
        return []

    def is_readable(self, fileno: int):
        pass
    def is_writable(self, fileno: int):
        pass