Uses of Class
software.amazon.awssdk.crt.http.HttpStream
-
Packages that use HttpStream Package Description software.amazon.awssdk.crt.http -
-
Uses of HttpStream in software.amazon.awssdk.crt.http
Methods in software.amazon.awssdk.crt.http that return HttpStream Modifier and Type Method Description HttpStream
HttpClientConnection. makeRequest(HttpRequest request, HttpStreamResponseHandler streamHandler)
Schedules an HttpRequest on the Native EventLoop for this HttpClientConnection specific to HTTP/1.1 connection.Methods in software.amazon.awssdk.crt.http with parameters of type HttpStream Modifier and Type Method Description default void
HttpStreamResponseHandler. onMetrics(HttpStream stream, HttpStreamMetrics metrics)
Called right before stream is complete, whether successful or unsuccessful.default int
HttpStreamResponseHandler. onResponseBody(HttpStream stream, byte[] bodyBytesIn)
Called when new Response Body bytes have been received.void
HttpStreamResponseHandler. onResponseComplete(HttpStream stream, int errorCode)
Called from Native when the Response has completed.void
HttpStreamResponseHandler. onResponseHeaders(HttpStream stream, int responseStatusCode, int blockType, HttpHeader[] nextHeaders)
Called from Native when new Http Headers have been received.default void
HttpStreamResponseHandler. onResponseHeadersDone(HttpStream stream, int blockType)
Called from Native once all HTTP Headers are processed.
-