summaryrefslogtreecommitdiff
path: root/venv/lib/python3.11/site-packages/uvloop/handles/timer.pxd
diff options
context:
space:
mode:
Diffstat (limited to 'venv/lib/python3.11/site-packages/uvloop/handles/timer.pxd')
-rw-r--r--venv/lib/python3.11/site-packages/uvloop/handles/timer.pxd18
1 files changed, 0 insertions, 18 deletions
diff --git a/venv/lib/python3.11/site-packages/uvloop/handles/timer.pxd b/venv/lib/python3.11/site-packages/uvloop/handles/timer.pxd
deleted file mode 100644
index fda23b6..0000000
--- a/venv/lib/python3.11/site-packages/uvloop/handles/timer.pxd
+++ /dev/null
@@ -1,18 +0,0 @@
-cdef class UVTimer(UVHandle):
- cdef:
- method_t callback
- object ctx
- bint running
- uint64_t timeout
- uint64_t start_t
-
- cdef _init(self, Loop loop, method_t callback, object ctx,
- uint64_t timeout)
-
- cdef stop(self)
- cdef start(self)
- cdef get_when(self)
-
- @staticmethod
- cdef UVTimer new(Loop loop, method_t callback, object ctx,
- uint64_t timeout)