Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

19 wiersze
440 B

  1. cdef class UVTimer(UVHandle):
  2. cdef:
  3. method_t callback
  4. object ctx
  5. bint running
  6. uint64_t timeout
  7. uint64_t start_t
  8. cdef _init(self, Loop loop, method_t callback, object ctx,
  9. uint64_t timeout)
  10. cdef stop(self)
  11. cdef start(self)
  12. cdef get_when(self)
  13. @staticmethod
  14. cdef UVTimer new(Loop loop, method_t callback, object ctx,
  15. uint64_t timeout)