@NotThreadSafe
public class ChunkedEncodingInputStream
extends java.io.FilterInputStream
aws-chunked encoded input stream into its original form.
For more informaiton about the aws-chunked encoding type, see the AWS S3 REST API reference
https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-streaming.html| Modifier | Constructor and Description |
|---|---|
protected |
ChunkedEncodingInputStream(java.io.InputStream in)
Creates a
FilterInputStream
by assigning the argument in
to the field this.in so as
to remember it for later use. |
| Modifier and Type | Method and Description |
|---|---|
int |
read() |
int |
read(byte[] b,
int off,
int len) |
protected ChunkedEncodingInputStream(java.io.InputStream in)
FilterInputStream
by assigning the argument in
to the field this.in so as
to remember it for later use.in - the underlying input stream, or null if
this instance is to be created without an underlying stream.Copyright © 2022. All Rights Reserved.