You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have the SUB socket: subscribeSocket = m_context.createSocket(SocketType.sub);
I then try to set the "conflate" option to it: subscribeSocket.setOption(ZMQ_CONFLATE, "1");
But I get this exception:
Some other functions in the socket.dart specify that I should use the Z85 encoding for the input string. Is it also the case here?
This is on Android BTW.
The text was updated successfully, but these errors were encountered:
It seems that the value (string) is not expected here. Looking at the documentation a boolean is expected. We might need a different way of handling this.
I have the SUB socket:
subscribeSocket = m_context.createSocket(SocketType.sub);
I then try to set the "conflate" option to it:
subscribeSocket.setOption(ZMQ_CONFLATE, "1");
But I get this exception:
Some other functions in the socket.dart specify that I should use the Z85 encoding for the input string. Is it also the case here?
This is on Android BTW.
The text was updated successfully, but these errors were encountered: