Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

17 lignes
391 B

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