Package | Description |
---|---|
io.grpc.inprocess |
The in-process transport which is for when a server is in the same process as the client.
|
Modifier and Type | Method | Description |
---|---|---|
static InProcessChannelBuilder |
InProcessChannelBuilder.forAddress(java.lang.String name,
int port) |
Always fails.
|
static InProcessChannelBuilder |
InProcessChannelBuilder.forName(java.lang.String name) |
Create a channel builder that will connect to the server with the given name.
|
static InProcessChannelBuilder |
InProcessChannelBuilder.forTarget(java.lang.String target) |
Always fails.
|
InProcessChannelBuilder |
InProcessChannelBuilder.keepAliveTime(long keepAliveTime,
java.util.concurrent.TimeUnit timeUnit) |
Does nothing.
|
InProcessChannelBuilder |
InProcessChannelBuilder.keepAliveTimeout(long keepAliveTimeout,
java.util.concurrent.TimeUnit timeUnit) |
Does nothing.
|
InProcessChannelBuilder |
InProcessChannelBuilder.keepAliveWithoutCalls(boolean enable) |
Does nothing.
|
InProcessChannelBuilder |
InProcessChannelBuilder.maxInboundMessageSize(int max) |
|
InProcessChannelBuilder |
InProcessChannelBuilder.maxInboundMetadataSize(int bytes) |
Sets the maximum size of metadata allowed to be received.
|
InProcessChannelBuilder |
InProcessChannelBuilder.scheduledExecutorService(java.util.concurrent.ScheduledExecutorService scheduledExecutorService) |
Provides a custom scheduled executor service.
|
InProcessChannelBuilder |
InProcessChannelBuilder.usePlaintext() |
Does nothing.
|
InProcessChannelBuilder |
InProcessChannelBuilder.usePlaintext(boolean skipNegotiation) |
Deprecated.
use
usePlaintext() instead. |
InProcessChannelBuilder |
InProcessChannelBuilder.useTransportSecurity() |
Does nothing.
|