Is it safe to access a NetMQ
socket from multiple threads, as long as they are not using it simultaneously?
For example,
is the following scenario OK:
- Thread
A
uses a socket. - Thread
A
ends. - Thread
B
uses the same socket.
If not,
must the sole operating thread be the very same who created the socket?