ZMQ background process
|
|
---|---|
Hi I'm trying to write a device server where I want to have a zmq socket listening on port. The zmq context is initialised with this code:
Now I want to run a function like this without blocking the detector:
I tried some things with asyncio, but I'm not able to start this without blocking the server. Is something like this possible? If so, then how? |