Skip to content

Commit 9358b08

Browse files
committed
tirvial updates
1 parent 868747c commit 9358b08

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

src/main/java/software/amazon/awssdk/crt/http/HttpStreamManager.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,10 @@ private void h1AcquireStream(HttpRequestBase request,
9797
* Request a HttpStream from StreamManager. If the streamManager is made with
9898
* HTTP/2 connection under the hood, it will be Http2Stream.
9999
*
100-
* @param request
101-
* @param streamHandler
100+
* @param request HttpRequestBase. The Request to make to the Server.
101+
* @param streamHandler HttpStreamBaseResponseHandler. The Stream Handler to be called from the Native EventLoop
102102
* @return A future for a Http2Stream that will be completed when the stream is
103103
* acquired.
104-
* @throws CrtRuntimeException
105104
*/
106105
public CompletableFuture<HttpStreamBase> acquireStream(HttpRequestBase request,
107106
HttpStreamBaseResponseHandler streamHandler) {

src/main/java/software/amazon/awssdk/crt/http/HttpStreamManagerOptions.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66
* instance
77
*/
88
public class HttpStreamManagerOptions {
9-
public static final int DEFAULT_MAX_WINDOW_SIZE = Integer.MAX_VALUE;
10-
public static final int DEFAULT_MAX = Integer.MAX_VALUE;
11-
public static final int DEFAULT_MAX_CONNECTIONS = 2;
129

1310
private HttpClientConnectionManagerOptions h1ConnectionManagerOptions;
1411
private Http2StreamManagerOptions h2StreamManagerOptions;

0 commit comments

Comments
 (0)