rewrite to zmq push and pull patterns.

file load works, suite can start up
This commit is contained in:
Alex Bezdieniezhnykh
2025-01-23 14:37:13 +02:00
parent ce25ef38b0
commit 82b3b526a7
20 changed files with 243 additions and 208 deletions
+16
View File
@@ -0,0 +1,16 @@
cdef class RemoteCommandHandler:
cdef object _on_command
cdef object _context
cdef object _socket
cdef object _shutdown_event
cdef object _pull_socket
cdef object _pull_thread
cdef object _push_socket
cdef object _push_queue
cdef object _push_thread
cdef start(self)
cdef _pull_loop(self)
cdef _push_loop(self)
cdef send(self, bytes message_bytes)
cdef close(self)