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, 18 insertions, 0 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
new file mode 100644
index 0000000..fda23b6
--- /dev/null
+++ b/venv/lib/python3.11/site-packages/uvloop/handles/timer.pxd
@@ -0,0 +1,18 @@
+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)