Home
last modified time | relevance | path

Searched refs:keepAliveWithoutCalls (Results 1 – 8 of 8) sorted by relevance

/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/
DNettyChannelBuilder.java82 private boolean keepAliveWithoutCalls; field in NettyChannelBuilder
326 public NettyChannelBuilder keepAliveWithoutCalls(boolean enable) { in keepAliveWithoutCalls() method in NettyChannelBuilder
327 keepAliveWithoutCalls = enable; in keepAliveWithoutCalls()
387 maxHeaderListSize, keepAliveTimeNanos, keepAliveTimeoutNanos, keepAliveWithoutCalls, in buildTransportFactory()
495 private final boolean keepAliveWithoutCalls; field in NettyChannelBuilder.NettyTransportFactory
504 long keepAliveTimeNanos, long keepAliveTimeoutNanos, boolean keepAliveWithoutCalls, in NettyTransportFactory() argument
514 this.keepAliveWithoutCalls = keepAliveWithoutCalls; in NettyTransportFactory()
553 keepAliveWithoutCalls, options.getAuthority(), options.getUserAgent(), in newClientTransport()
DNettyClientTransport.java81 private final boolean keepAliveWithoutCalls; field in NettyClientTransport
102 boolean keepAliveWithoutCalls, String authority, @Nullable String userAgent, in NettyClientTransport() argument
115 this.keepAliveWithoutCalls = keepAliveWithoutCalls; in NettyClientTransport()
193 keepAliveWithoutCalls);
/external/grpc-grpc-java/okhttp/src/main/java/io/grpc/okhttp/
DOkHttpChannelBuilder.java160 private boolean keepAliveWithoutCalls; field in OkHttpChannelBuilder
283 public OkHttpChannelBuilder keepAliveWithoutCalls(boolean enable) { in keepAliveWithoutCalls() method in OkHttpChannelBuilder
284 keepAliveWithoutCalls = enable; in keepAliveWithoutCalls()
401 enableKeepAlive, keepAliveTimeNanos, keepAliveTimeoutNanos, keepAliveWithoutCalls, in buildTransportFactory()
479 private final boolean keepAliveWithoutCalls; field in OkHttpChannelBuilder.OkHttpTransportFactory
492 boolean keepAliveWithoutCalls, in OkHttpTransportFactory() argument
504 this.keepAliveWithoutCalls = keepAliveWithoutCalls; in OkHttpTransportFactory()
545 true, keepAliveTimeNanosState.get(), keepAliveTimeoutNanos, keepAliveWithoutCalls); in newClientTransport()
DOkHttpClientTransport.java190 private boolean keepAliveWithoutCalls; field in OkHttpClientTransport
288 long keepAliveTimeoutNanos, boolean keepAliveWithoutCalls) { in enableKeepAlive() argument
292 this.keepAliveWithoutCalls = keepAliveWithoutCalls; in enableKeepAlive()
420 keepAliveWithoutCalls); in start()
/external/grpc-grpc-java/core/src/main/java/io/grpc/
DForwardingChannelBuilder.java173 public T keepAliveWithoutCalls(boolean enable) { in keepAliveWithoutCalls() method in ForwardingChannelBuilder
174 delegate().keepAliveWithoutCalls(enable); in keepAliveWithoutCalls()
DManagedChannelBuilder.java352 public T keepAliveWithoutCalls(boolean enable) { in keepAliveWithoutCalls() method in ManagedChannelBuilder
/external/grpc-grpc-java/core/src/main/java/io/grpc/inprocess/
DInProcessChannelBuilder.java127 public InProcessChannelBuilder keepAliveWithoutCalls(boolean enable) { in keepAliveWithoutCalls() method in InProcessChannelBuilder
/external/grpc-grpc-java/alts/src/main/java/io/grpc/alts/
DAltsChannelBuilder.java80 .keepAliveWithoutCalls(true); in AltsChannelBuilder()