grpc-dart
grpc-dart copied to clipboard
The Dart language implementation of gRPC.
An alternative solution to https://github.com/grpc/grpc-dart/issues/413 without introducing `ResponseFuture` wrapping/chaining.
Currently the gRPC-dart implementation doesn't support setting max message size from client, it appears the go and java implementation supports using `grpc.MaxRecvMsgSize` call option.
I want to use the same implementation of gRPC for my local enviroment. That means that I don't want to start a server to be able to call functions. Yes,...
It will be more convinece to use the `FutureOr` from `dart:async`, since it makes more easy to implement simple method without adding the word `async` infront every one. instead of:...
I am using grpc-dart on Flutter and I am facing a problem on the iOS but it works on Android and web, when the internet is interrupted, the call from...
We've been trying to add versioning to grpc services client side, and we tried to do the following when creating web client channels: ```dart final clientChannel = GrpcWebClientChannel.xhr( Uri.https( authority,...
Can we use ClientInterceptor for handling common use cases or errors from the response?
Add ability to register a Function call onResponseError, so we can log errors (or anything else) Fix https://github.com/grpc/grpc-dart/issues/51 Usage ```dart Server( [ service ], [], codec, (error, trace) { ......
We are not interested in what happens to it after we recycle it, and we don't want the callback to reset our state to idle just after establishing a new...
A previous PR #493 solved the problem of receiving trailers within the GrpcError object from the client. It works well with servers built in other languages that send those trailers....