-
I'm wondering if its possible to implement ZMQ Poll in the ZMQ module. It would be nice to be able to have, say, one socket per task per locale in our program, and then poll on results. Could be usefu…
-
When I set both options, my replies are being discarded. If I set only the ZMQ_REQ_RELAXED options, I am able to receive replies.
```java
socket.setReqCorrelate(true);
socket.setReqRelaxed(true);…
-
In the online guide you twice call zmq_msg_more() on a message after calling zmq_msg_close() on that message:
- near the end of Multipart Messages section (http://zguide.zeromq.org/page:all#Multipart…
-
These warnings:
```
/usr/ports/net/cppzmq/work/cppzmq-4.10.0/tests/socket.cpp:619:24: warning: 'recv' is deprecated: from 4.3.1, use recv taking a reference to message_t and recv_flags [-Wdeprecated…
-
## ZMQ
```c
int rv = 0;
auto context = zmq_init(1);
auto socket = zmq_socket(context,ZMQ_STREAM);
rv = zmq_connect(socket,ADDRESS);
assert(rv==0);
std::string id;
id.resize(5);
size_t …
-
Hi,
I would like to use the Z85 encoding (https://rfc.zeromq.org/spec:32/Z85/) in my project and I was wondering how much effort would it be to expose these functions. I see that a related function…
-
**I hava choosed --with-pgm**
**this code can only send message,but cannot receive message**
```python3
import zmq
# 创建上下文
context_p = zmq.Context()
context_s = zmq.Context()
# 创建发布者
pub…
-
After running Google colab Avatarify, had this issue after installing zmq and other packages. It seems to be a dead end.
![IMG-20240113-WA0244](https://github.com/alievk/avatarify-python/assets/1414…
OGTSP updated
5 months ago
-
I'm working on zeromq3 branch,
The parameter order seems to be wrong at zmq_msg_send and zmq_msg_recv.
The first parameter of zmq_msg_send and zmq_msg_recv should be the zmq_msg_t
https://github.co…
-
An example:
```python
import zmq
import gym
from gym import spaces
class ZMQConnection:
def __init__(self, ip, port):
self._ip = ip
self._port = port
sel…