Package | Description |
---|---|
ratpack.http |
The HTTP protocol.
|
Modifier and Type | Method and Description |
---|---|
static ResponseChunks |
ResponseChunks.bufferChunks(CharSequence contentType,
org.reactivestreams.Publisher<? extends ByteBuf> publisher)
Transmit each set of bytes emitted by the publisher as a chunk.
|
static ResponseChunks |
ResponseChunks.stringChunks(CharSequence contentType,
Charset charset,
org.reactivestreams.Publisher<? extends CharSequence> publisher)
Transmit each string emitted by the publisher as a chunk.
|
static ResponseChunks |
ResponseChunks.stringChunks(CharSequence contentType,
org.reactivestreams.Publisher<? extends CharSequence> publisher)
Transmit each string emitted by the publisher as a chunk.
|
static ResponseChunks |
ResponseChunks.stringChunks(org.reactivestreams.Publisher<? extends CharSequence> publisher)
Transmit each string emitted by the publisher as a chunk.
|