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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
ChannelOptions now exposes connectTimeout, which is used on the
socket connect. This is used to specify the maximum allowed time to wait
for a connection to be established. If connectTime is longer than the system
level timeout duration, a timeout may occur sooner than specified in connectTimeout. On timeout, a SocketException is thrown.
Require Dart 2.17 or greater.
Fix issue #51, add support for custom error handling.
Expose client IP address to server
Add a channelShutdownHandler argument to ClientChannel and the subclasses.
This callback can be used to react to channel shutdown or termination.
Export the Code protobuf enum from the grpc.dart library.