Interface ChunkDecodable<H extends ChunkHeader,​ROW extends ChunkRow,​T extends ChunkTrailer,​R extends ChunkedResponse<H,​ROW,​T>>

    • Method Detail

      • decode

        R decode​(ResponseStatus status,
                 H header,
                 Flux<ROW> rows,
                 Mono<T> trailer)
        Decodes a chunked response into the response format.
        Parameters:
        status - the http response status.
        header - the chunk header.
        rows - the chunk rows.
        trailer - the chunk trailer.
        Returns:
        a decoded response including all the chunk parts.