Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

26 řádky
575 B

  1. cdef class UVPoll(UVHandle):
  2. cdef:
  3. int fd
  4. Handle reading_handle
  5. Handle writing_handle
  6. cdef _init(self, Loop loop, int fd)
  7. cdef _close(self)
  8. cdef inline _poll_start(self, int flags)
  9. cdef inline _poll_stop(self)
  10. cdef int is_active(self) noexcept
  11. cdef is_reading(self)
  12. cdef is_writing(self)
  13. cdef start_reading(self, Handle callback)
  14. cdef start_writing(self, Handle callback)
  15. cdef stop_reading(self)
  16. cdef stop_writing(self)
  17. cdef stop(self)
  18. @staticmethod
  19. cdef UVPoll new(Loop loop, int fd)