-
-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
send non-binary data #2
Comments
Hey @NaarGes the
If you want to send non-binary data you need to use some kind of serialization/deserialization mechanism like protobuf.
Just use the Streams of |
I updated the README and example to show how to receive messages |
Has this question been resolved for you @NaarGes ? |
Actually I implement it bud I couldn't use it for my flutter application, It gets libzmq.so not found error (or sth like that) in runtime. I tried adding |
Yeah getting it to work on Android is a little more difficult than on windows. For Android a compiled version of the standard c++ library is needed as well. I will need to add that to the documentation! |
It's a very useful and unique package for dart. Keep it on! |
I've updated the README and improved the steps for |
Hi, why socket.send() parameter is from
List<int>
type? does it get data as binary array? what if someone wants to send data non-binary?and I have another question; how we can receive response from a
req
socket connection?The text was updated successfully, but these errors were encountered: