Skip to content
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

Keep the Channel in clients receivers & senders #393

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

Ten0
Copy link
Contributor

@Ten0 Ten0 commented Oct 28, 2019

Resolves #123

Channel contains the Arc so that

let streaming_stuff = Client::new(init_channel()).some_call();

does not die due to channel being dropped at the end of the line.

Channel contains the Arc<ChannelInner> so that
```rust
let streaming_stuff = Client::new(init_channel()).some_call();
```
does not die due to channel being dropped at the end of the line.

Signed-off-by: Thomas Bessou <thomas.bessou@hotmail.fr>
@Ten0 Ten0 force-pushed the KeepChannelAliveOnClientCallUpstream branch from 2ba6b4b to cb8add2 Compare October 28, 2019 20:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Client Stream of a streaming server can't be Boxed
1 participant