grpc-java
grpc-java copied to clipboard
The Java gRPC implementation. HTTP/2 based RPC
Is there a way to add a CustomHandler to ChannelPipeline using NettyServerBuilder ? I initialize my GrpcNettyServer by below: ``` NettyServerBuilder serverBuilder = NettyServerBuilder .forPort(config.getPort()) .addService(); .intercept(); .executor(); .build(); ```...
We've long-exposed the [gRFC A9](https://github.com/grpc/proposal/blob/master/A9-server-side-conn-mgt.md) APIs on NettyServerBuilder. This tracks the APIs on ServerBuilder. See also #8991
### What version of gRPC-Java are you using? master ### What is your environment? Android/Linux ### Steps to reproduce the bug 1) Declare an Android Service hosting an BinderServerBuilder-built Server...
I have a problem with adding SslMasterKeyHandler#newWireSharkSslMasterKeyHandler on the server side. I tried to do this with channelFactory: ``` builder.channelFactory(() -> { final ServerChannel ch = GrpcUtil.getDefaultServerChannelFactory().newChannel(); final ChannelPipeline pipeline...
The goal is as described in #1621 to add the ability to run a gRPC server as a Servlet on any web container with the Servlet 4.0 support and HTTP/2...
### Is your feature request related to a problem? yes using the connection retry and/or , rpc retry blocks all feedback from coming back to the user. ### Describe the...
### Is your feature request related to a problem? I have a (Spring) discovery service based `NameResolver` which sends regular updates/ticks to the application, however it does not contain details...
Transparent retry is limited to 1 attempt. It seems like that one attempt should be per-hedge and per-(higher-level) retry. In the current implementation transparent retry is limited to 1 attempt...
It looks like this would solve the dependency problems I experienced when I tried last: https://github.com/bazelbuild/gmaven_rules