您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

13 行
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)