Uses of Class
software.amazon.awssdk.core.ResponseBytes
-
Packages that use ResponseBytes Package Description software.amazon.awssdk.core software.amazon.awssdk.core.async software.amazon.awssdk.core.internal.async software.amazon.awssdk.core.sync -
-
Uses of ResponseBytes in software.amazon.awssdk.core
Methods in software.amazon.awssdk.core that return ResponseBytes Modifier and Type Method Description static <ResponseT>
ResponseBytes<ResponseT>ResponseBytes. fromByteArray(ResponseT response, byte[] bytes)
CreateResponseBytes
from a Byte array.static <ResponseT>
ResponseBytes<ResponseT>ResponseBytes. fromByteArrayUnsafe(ResponseT response, byte[] bytes)
CreateResponseBytes
from a Byte array without copying the contents of the byte array.static <ResponseT>
ResponseBytes<ResponseT>ResponseBytes. fromInputStream(ResponseT response, InputStream stream)
CreateResponseBytes
from 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 ResponseBytes Modifier and Type Method Description static <ResponseT>
AsyncResponseTransformer<ResponseT,ResponseBytes<ResponseT>>AsyncResponseTransformer. toBytes()
Creates anAsyncResponseTransformer
that 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 ResponseBytes Modifier and Type Method Description CompletableFuture<ResponseBytes<ResponseT>>
ByteArrayAsyncResponseTransformer. prepare()
-
Uses of ResponseBytes in software.amazon.awssdk.core.sync
Methods in software.amazon.awssdk.core.sync that return types with arguments of type ResponseBytes Modifier and Type Method Description static <ResponseT>
ResponseTransformer<ResponseT,ResponseBytes<ResponseT>>ResponseTransformer. toBytes()
Creates a response transformer that loads all response content into memory, exposed asResponseBytes
.
-