Files
2025-10-29 14:37:08 +08:00

15 lines
276 B
Cython

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)