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.
|
cdef class UVAsync(UVHandle): |
|
cdef: |
|
method_t callback |
|
object ctx |
|
|
|
cdef _init(self, Loop loop, method_t callback, object ctx) |
|
|
|
cdef send(self) |
|
|
|
@staticmethod |
|
cdef UVAsync new(Loop loop, method_t callback, object ctx)
|
|
|