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.
 
 
 
 

13 lines
325 B

  1. cdef class UVFSEvent(UVHandle):
  2. cdef:
  3. object callback
  4. bint running
  5. cdef _init(self, Loop loop, object callback, object context)
  6. cdef _close(self)
  7. cdef start(self, char* path, int flags)
  8. cdef stop(self)
  9. @staticmethod
  10. cdef UVFSEvent new(Loop loop, object callback, object context)