Searched refs:maxConnectionAgeGraceInNanos (Results 1 – 5 of 5) sorted by relevance
/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/ |
D | NettyServerTransport.java | 74 private final long maxConnectionAgeGraceInNanos; field in NettyServerTransport 94 long maxConnectionAgeGraceInNanos, in NettyServerTransport() argument 111 this.maxConnectionAgeGraceInNanos = maxConnectionAgeGraceInNanos; in NettyServerTransport() 267 maxConnectionAgeGraceInNanos, in createHandler()
|
D | NettyServerBuilder.java | 88 private long maxConnectionAgeGraceInNanos = MAX_CONNECTION_AGE_GRACE_NANOS_INFINITE; field in NettyServerBuilder 383 maxConnectionAgeGraceInNanos = timeUnit.toNanos(maxConnectionAgeGrace); in maxConnectionAgeGrace() 384 if (maxConnectionAgeGraceInNanos >= AS_LARGE_AS_INFINITE) { in maxConnectionAgeGrace() 385 maxConnectionAgeGraceInNanos = MAX_CONNECTION_AGE_GRACE_NANOS_INFINITE; in maxConnectionAgeGrace() 438 maxConnectionAgeInNanos, maxConnectionAgeGraceInNanos, in buildTransportServer()
|
D | NettyServer.java | 89 private final long maxConnectionAgeGraceInNanos; field in NettyServer 110 long maxConnectionAgeInNanos, long maxConnectionAgeGraceInNanos, in NettyServer() argument 132 this.maxConnectionAgeGraceInNanos = maxConnectionAgeGraceInNanos; in NettyServer() 206 maxConnectionAgeGraceInNanos, in start()
|
D | NettyServerHandler.java | 110 private final long maxConnectionAgeGraceInNanos; field in NettyServerHandler 145 long maxConnectionAgeGraceInNanos, in newHandler() argument 170 maxConnectionAgeGraceInNanos, in newHandler() 191 long maxConnectionAgeGraceInNanos, in newHandler() argument 231 maxConnectionAgeInNanos, maxConnectionAgeGraceInNanos, in newHandler() 249 long maxConnectionAgeGraceInNanos, in NettyServerHandler() argument 297 this.maxConnectionAgeGraceInNanos = maxConnectionAgeGraceInNanos; in NettyServerHandler() 325 gracefulShutdown = new GracefulShutdown("max_age", maxConnectionAgeGraceInNanos); in handlerAdded()
|
/external/grpc-grpc-java/netty/src/test/java/io/grpc/netty/ |
D | NettyServerHandlerTest.java | 139 private long maxConnectionAgeGraceInNanos = MAX_CONNECTION_AGE_GRACE_NANOS_INFINITE; field in NettyServerHandlerTest 928 maxConnectionAgeGraceInNanos = TimeUnit.MINUTES.toNanos(30L); in maxConnectionAgeGrace_channelStillOpenDuringGracePeriod() 959 maxConnectionAgeGraceInNanos = TimeUnit.MINUTES.toNanos(30L); // greater than ping timeout in maxConnectionAgeGrace_channelClosedAfterGracePeriod_withPingTimeout() 983 fakeClock().forwardNanos(maxConnectionAgeGraceInNanos - 2); in maxConnectionAgeGrace_channelClosedAfterGracePeriod_withPingTimeout() 997 maxConnectionAgeGraceInNanos = TimeUnit.MINUTES.toNanos(30L); // greater than ping timeout in maxConnectionAgeGrace_channelClosedAfterGracePeriod_withPingAck() 1023 fakeClock().forwardNanos(maxConnectionAgeGraceInNanos - TimeUnit.MILLISECONDS.toNanos(2)); in maxConnectionAgeGrace_channelClosedAfterGracePeriod_withPingAck() 1076 maxConnectionAgeGraceInNanos, in newHandler()
|