Home
last modified time | relevance | path

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

/aosp_15_r20/external/aws-crt-java/src/main/java/software/amazon/awssdk/crt/http/
H A DHttp2StreamManagerOptions.java20 private int maxConcurrentStreamsPerConnection = DEFAULT_MAX; field in Http2StreamManagerOptions
94 …StreamManagerOptions withMaxConcurrentStreamsPerConnection(int maxConcurrentStreamsPerConnection) { in withMaxConcurrentStreamsPerConnection() argument
95 this.maxConcurrentStreamsPerConnection = maxConcurrentStreamsPerConnection; in withMaxConcurrentStreamsPerConnection()
106 return maxConcurrentStreamsPerConnection; in getMaxConcurrentStreamsPerConnection()
261 if (maxConcurrentStreamsPerConnection <= 0) { in validateOptions()
265 || idealConcurrentStreamsPerConnection > maxConcurrentStreamsPerConnection) { in validateOptions()
H A DHttp2StreamManager.java31 private final int maxConcurrentStreamsPerConnection; field in Http2StreamManager
65 int maxConcurrentStreamsPerConnection = options.getMaxConcurrentStreamsPerConnection(); in Http2StreamManager() local
72 this.maxConcurrentStreamsPerConnection = maxConcurrentStreamsPerConnection; in Http2StreamManager()
121 maxConcurrentStreamsPerConnection, in Http2StreamManager()