Home
last modified time | relevance | path

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

/external/grpc-grpc-java/interop-testing/src/test/java/io/grpc/testing/integration/
DTrafficControlProxy.java45 private final int queueLength; field in TrafficControlProxy
76 queueLength = (int) Math.max(bandwidth * latency / TimeUnit.SECONDS.toNanos(1), 1); in TrafficControlProxy()
77 chunkSize = Math.max(1, queueLength); in TrafficControlProxy()
103 + " with Queue Length " + queueLength); in start()
223 while (bytesQueued == queueLength) { in getNextChunk()
226 return Math.max(0, Math.min(chunkSize, queueLength - bytesQueued)); in getNextChunk()
231 if (bytesQueued < queueLength) { in incrementBytes()