group-wbl/.venv/lib/python3.13/site-packages/uvloop/handles/fsevent.pxd

13 lines
325 B
Cython
Raw Normal View History

2026-01-09 09:12:25 +08:00
cdef class UVFSEvent(UVHandle):
cdef:
object callback
bint running
cdef _init(self, Loop loop, object callback, object context)
cdef _close(self)
cdef start(self, char* path, int flags)
cdef stop(self)
@staticmethod
cdef UVFSEvent new(Loop loop, object callback, object context)