Searched refs:maxConnectionAgeGrace (Results 1 – 2 of 2) sorted by relevance
381 public NettyServerBuilder maxConnectionAgeGrace(long maxConnectionAgeGrace, TimeUnit timeUnit) { in maxConnectionAgeGrace() method in NettyServerBuilder382 checkArgument(maxConnectionAgeGrace >= 0L, "max connection age grace must be non-negative"); in maxConnectionAgeGrace()383 maxConnectionAgeGraceInNanos = timeUnit.toNanos(maxConnectionAgeGrace); in maxConnectionAgeGrace()
109 builder.maxConnectionAgeGrace(-1, TimeUnit.HOURS); in failIfMaxConnectionAgeGraceNegative()