grpc-dart
grpc-dart copied to clipboard
The Dart language implementation of gRPC.
Interested in supporting external ASIO/gRPC C++, with a connection to Dart via isolate bridge. It's there an easy way to pass off a serialized gRPC messages in Dart to a...
Hey everyone thanks for this awesome library What is the best practice when we are using ClientChannel? Should have a ClientChannel for each call and shutdown the connection after the...
Remove dependency on `package:archive` - this was only introduced for gzip support, which is also provided by `dart:io`. There is not gzip support on the web per [the specs](https://github.com/grpc/grpc-web/blob/master/doc/browser-features.md#compression), but...
Bumps [dart-lang/setup-dart](https://github.com/dart-lang/setup-dart) from 1.6.2 to 1.6.4. Release notes Sourced from dart-lang/setup-dart's releases. v1.6.4 Rebuild JS code to include changes from v1.6.3 v1.6.3 Roll undici dependency to address CVE-2024-30260 and CVE-2024-30261....
https://github.com/dart-lang/http2/blob/master/lib/src/streams/stream_handler.dart attached link to the code, how to expose StreamState?
I'm seeing build errors making the [grpc_interop_dart container](https://github.com/grpc/grpc/tree/master/tools/dockerfile/interoptest/grpc_interop_dart). The first failure I see is from 5:27:13 AM PDT and there was a successful build at 3:40:21 AM PDT. The error...
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.4. Release notes Sourced from actions/checkout's releases. v4.1.4 What's Changed Disable extensions.worktreeConfig when disabling sparse-checkout by @jww3 in actions/checkout#1692 Add dependabot config by @cory-miller in...
To reduce dependencies, replace the gzip compression by `dart:io` on native and [`DecompressionStream`](https://developer.mozilla.org/en-US/docs/Web/API/DecompressionStream) on the web.
Is it possible to track some specific request? I have grpc stream and I need to track onReady, onClosed etc.