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

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      H header()
      Returns the header for this response, immediately available.
      Flux<R> rows()
      Returns the rows for this response, available pushed as they come streaming in.
      Mono<T> trailer()
      Returns the trailer for this response, available at the end of the response eventually.
      • Methods inherited from interface com.couchbase.client.core.msg.Response

        status
    • Method Detail

      • header

        H header()
        Returns the header for this response, immediately available.
      • rows

        Flux<R> rows()
        Returns the rows for this response, available pushed as they come streaming in.
      • trailer

        Mono<T> trailer()
        Returns the trailer for this response, available at the end of the response eventually.