You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
cdef class UVCheck(UVHandle): |
|
cdef: |
|
Handle h |
|
bint running |
|
|
|
# All "inline" methods are final |
|
|
|
cdef _init(self, Loop loop, Handle h) |
|
|
|
cdef inline stop(self) |
|
cdef inline start(self) |
|
|
|
@staticmethod |
|
cdef UVCheck new(Loop loop, Handle h)
|
|
|