add azaion loader

This commit is contained in:
Alex Bezdieniezhnykh
2025-06-01 19:16:49 +03:00
parent 2584b4f125
commit 500db31142
54 changed files with 629 additions and 291 deletions
+16
View File
@@ -0,0 +1,16 @@
cdef class RemoteCommandHandler:
cdef object _context
cdef object _router
cdef object _dealer
cdef object _control
cdef object _shutdown_event
cdef object _on_command
cdef object _proxy_thread
cdef object _workers
cdef start(self)
cdef _proxy_loop(self)
cdef _worker_loop(self)
cdef send(self, bytes client_id, bytes data)
cdef stop(self)