Class ResponseInputStream<ResponseT>

  • All Implemented Interfaces:
    Closeable, AutoCloseable, Releasable, Abortable

    public final class ResponseInputStream<ResponseT>
    extends SdkFilterInputStream
    implements Abortable
    Input stream that provides access to the unmarshalled POJO response returned by the service in addition to the streamed contents. This input stream should be closed to release the underlying connection back to the connection pool.

    If it is not desired to read remaining data from the stream, you can explicitly abort the connection via abort(). Note that this will close the underlying connection and require establishing an HTTP connection which may outweigh the cost of reading the additional data.

    • Method Detail

      • response

        public ResponseT response()
        Returns:
        The unmarshalled POJO response associated with this content.
      • abort

        public void abort()
        Close the underlying connection, dropping all remaining data in the stream, and not leaving the connection open to be used for future requests.
        Specified by:
        abort in interface Abortable
        Overrides:
        abort in class SdkFilterInputStream