Interface | Description |
---|---|
HttpCompressionStrategy |
Determines if a given http message should be compressed.
|
HttpContentProcessor<T> |
A reactive streams
Processor that processes incoming ByteBufHolder and
outputs a given type. |
HttpContentProcessorResolver |
Responsible for determining which
HttpContentProcessor to use to process
the body of the request. |
HttpContentSubscriberFactory |
Interface that allows plugging into the constructor of the
HttpContent
subscriber. |
NettyEmbeddedServer |
Extended
EmbeddedServer interface that represents a
Netty-based HTTP server. |
NettyEmbeddedServerFactory |
A factory / strategy interface for creating instances of
NettyEmbeddedServer . |
NettyEmbeddedServices |
Internal interface with services required by the
NettyHttpServer . |
NettyServerCustomizer |
Interface implemented by users to hook into the pipeline setup of the netty HTTP server.
|
NettyServerCustomizer.Registry |
Interface implemented by the HTTP server to register customizers.
|
Class | Description |
---|---|
AbstractBufferingHttpContentProcessor<T> |
Abtract implementation of the
HttpContentProcessor interface that deals with limiting file upload sizes. |
AbstractHttpContentProcessor<T> |
Abstract implementation of the
HttpContentProcessor interface that deals with limiting file upload sizes. |
ByteBufDelegate |
Delegates all functionality to the provided buffer.
|
DefaultHttpContentProcessor |
This class will handle subscribing to a stream of
HttpContent . |
DefaultNettyEmbeddedServerFactory |
Default implementation of
NettyEmbeddedServerFactory . |
FormDataHttpContentProcessor |
Decodes
MediaType.MULTIPART_FORM_DATA in a non-blocking manner. |
FormDataHttpContentSubscriberFactory |
Builds a
Subscriber for MediaType.APPLICATION_FORM_URLENCODED . |
HttpDataReference |
A helper class to store references to httpdata and related information.
|
NettyHttpRequest<T> |
Delegates to the Netty
HttpRequest instance. |
NettyHttpResponseFactory |
Implementation of
HttpResponseFactory for Netty. |
NettyHttpServer |
Implements the bootstrap and configuration logic for the Netty implementation of
EmbeddedServer . |
NettyRequestArgumentSatisfier |
A class containing methods to aid in satisfying arguments of a
Route . |
SmartHttpContentCompressor |
An extension of
HttpContentCompressor that skips encoding if the content type is not compressible or if
the content is too small. |
Enum | Description |
---|---|
NettyServerCustomizer.ChannelRole |
Enum to describe the role of the channel passed to
NettyServerCustomizer.specializeForChannel(Channel, ChannelRole) . |