| Package | Description |
|---|---|
| io.helidon.webserver |
Reactive web server API.
|
| Modifier and Type | Class | Description |
|---|---|---|
class |
StringContentReader |
The StringContentReader provides means to convert a
ByteBuffer publisher to
a single string while using a given charset. |
| Modifier and Type | Method | Description |
|---|---|---|
static ServerRequest.Reader<byte[]> |
ContentReaders.byteArrayReader() |
The returned reader provides means to convert a
ByteBuffer publisher to
an array of bytes. |
static ServerRequest.Reader<java.io.InputStream> |
ContentReaders.inputStreamReader() |
Creates a reader that bridges Flow API IO to a blocking Java
InputStream. |
| Modifier and Type | Method | Description |
|---|---|---|
<T> void |
ServerRequest.Content.registerReader(java.lang.Class<T> type,
ServerRequest.Reader<T> reader) |
Registers a reader for a later use with an appropriate
ServerRequest.Content.as(Class) method call. |
<T> void |
ServerRequest.Content.registerReader(java.util.function.Predicate<java.lang.Class<?>> predicate,
ServerRequest.Reader<T> reader) |
Registers a reader for a later use with an appropriate
ServerRequest.Content.as(Class) method call. |
Copyright © 2018 Oracle Corporation. All rights reserved.