Files
tidal-dl-ng-webui/env/lib/python3.11/site-packages/uvloop/handles/idle.pxd
2024-12-27 22:31:23 +09:00

15 lines
274 B
Cython

cdef class UVIdle(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 UVIdle new(Loop loop, Handle h)