-
Notifications
You must be signed in to change notification settings - Fork 253
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
CallOption does not have Sync #548
Comments
I totally agree that it should be
Implement |
Ten0
added a commit
to Ten0/grpc-rs
that referenced
this issue
Oct 6, 2021
Ten0
added a commit
to Ten0/grpc-rs
that referenced
this issue
Oct 6, 2021
Fixes tikv#548 Signed-off-by: Thomas BESSOU <thomas.bessou@hotmail.fr>
BusyJay
pushed a commit
that referenced
this issue
Oct 8, 2021
Fixes #548 Signed-off-by: Thomas BESSOU <thomas.bessou@hotmail.fr>
christian-oudard
pushed a commit
to mobilecoinofficial/grpc-rs
that referenced
this issue
Oct 20, 2021
Fixes tikv#548 Signed-off-by: Thomas BESSOU <thomas.bessou@hotmail.fr>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://docs.rs/grpcio/0.9.0/grpcio/struct.CallOption.html#impl-Sync
This is weird that we can't clone it from several threads, given that
xxx_opt
takes ownership when making a call anyway so there may not be any issue within gRPC Core.What is the technical limitation that prevents us from having
Sync
onCallOption
?The text was updated successfully, but these errors were encountered: