Uses of Class
software.amazon.awssdk.core.ResponseBytes
Packages that use ResponseBytes
Package
Description
-
Uses of ResponseBytes in software.amazon.awssdk.core
Methods in software.amazon.awssdk.core that return ResponseBytesModifier and TypeMethodDescriptionstatic <ResponseT>
ResponseBytes<ResponseT>ResponseBytes.fromByteArray(ResponseT response, byte[] bytes) CreateResponseBytesfrom a Byte array.static <ResponseT>
ResponseBytes<ResponseT>ResponseBytes.fromByteArrayUnsafe(ResponseT response, byte[] bytes) CreateResponseBytesfrom a Byte array without copying the contents of the byte array.static <ResponseT>
ResponseBytes<ResponseT>ResponseBytes.fromByteBufferUnsafe(ResponseT response, ByteBuffer buffer) CreateResponseBytesfrom aByteBufferwith minimal copying.static <ResponseT>
ResponseBytes<ResponseT>ResponseBytes.fromInputStream(ResponseT response, InputStream stream) CreateResponseBytesfrom a Byte array. -
Uses of ResponseBytes in software.amazon.awssdk.core.async
Methods in software.amazon.awssdk.core.async that return types with arguments of type ResponseBytesModifier and TypeMethodDescriptionstatic <ResponseT>
AsyncResponseTransformer<ResponseT,ResponseBytes<ResponseT>> AsyncResponseTransformer.toBytes()Creates anAsyncResponseTransformerthat writes all content to a byte array. -
Uses of ResponseBytes in software.amazon.awssdk.core.internal.async
Methods in software.amazon.awssdk.core.internal.async that return types with arguments of type ResponseBytesModifier and TypeMethodDescriptionByteArrayAsyncResponseTransformer.prepare()ByteArrayAsyncResponseTransformer.split(SplittingTransformerConfiguration splitConfig) Constructor parameters in software.amazon.awssdk.core.internal.async with type arguments of type ResponseBytesModifierConstructorDescriptionByteArraySplittingTransformer(AsyncResponseTransformer<ResponseT, ResponseBytes<ResponseT>> upstreamResponseTransformer, CompletableFuture<ResponseBytes<ResponseT>> resultFuture) ByteArraySplittingTransformer(AsyncResponseTransformer<ResponseT, ResponseBytes<ResponseT>> upstreamResponseTransformer, CompletableFuture<ResponseBytes<ResponseT>> resultFuture) -
Uses of ResponseBytes in software.amazon.awssdk.core.sync
Methods in software.amazon.awssdk.core.sync that return types with arguments of type ResponseBytesModifier and TypeMethodDescriptionstatic <ResponseT>
ResponseTransformer<ResponseT,ResponseBytes<ResponseT>> ResponseTransformer.toBytes()Creates a response transformer that loads all response content into memory, exposed asResponseBytes.