9 lines
143 B
Cython
9 lines
143 B
Cython
|
|
cdef class UVRequest:
|
||
|
|
cdef:
|
||
|
|
uv.uv_req_t *request
|
||
|
|
bint done
|
||
|
|
Loop loop
|
||
|
|
|
||
|
|
cdef on_done(self)
|
||
|
|
cdef cancel(self)
|