-
Notifications
You must be signed in to change notification settings - Fork 57
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
Support zc_reply_fifo_new_unbounded
#528
Comments
In 0.11.0 unbounded channel was created by passing a 0 channel size, now passing 0 creates a rendezvous channel. I believe Zenoh rust also does not support unbounded flume-channel as its predefined handler. It was discussed with @Mallets and agreed that it does not worth implementing unbounded channel in zenoh-c. |
I see. Then let's close this issue 😁. |
Unbounded is rarely a good idea. A lot of channels uses the same implementation for both bounded and unbounded, so there is no difference in memory use. |
Describe the feature
A handler to an unbounded flume channel was supported in 0.11.0 but missing in 1.0.0.
The text was updated successfully, but these errors were encountered: