summaryrefslogtreecommitdiff
path: root/venv/lib/python3.11/site-packages/uvloop/handles/async_.pxd
blob: 5f0d820166b68ce1ab1ffaf4f5c3d43eadbdd895 (plain)
1
2
3
4
5
6
7
8
9
10
11
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)