Uses of Interface
org.jdrupes.httpcodec.Decoder
Package
Description
The entry point interfaces and classes.
Provides the API for adding “upgrade” protocols
Classes required for handling the HTTP protocol.
HTTP codecs required on the client side.
HTTP codecs required on the server side.
Classes for handling the Websocket protocol.
-
Uses of Decoder in org.jdrupes.httpcodec
Modifier and TypeMethodDescriptionDecoder<?,
?> Codec.ProtocolSwitchResult.newDecoder()
The decoder to be used for the next message if a protocol switch occured.ServerEngine.requestDecoder()
Returns the request decoder.ClientEngine.responseDecoder()
Decoder.setPeerEncoder
(Encoder<R, T> encoder) Sets the peer encoder.Modifier and TypeMethodDescriptionEncoder.setPeerDecoder
(Decoder<D, T> decoder) Sets the peer decoder. -
Uses of Decoder in org.jdrupes.httpcodec.plugin
Modifier and TypeMethodDescriptionabstract Decoder<?,
?> UpgradeProvider.createRequestDecoder
(String protocol) Creates a new request decoder for the protocol.abstract Decoder<?,
?> UpgradeProvider.createResponseDecoder
(String protocol) Creates a new response decoder for the protocol. -
Uses of Decoder in org.jdrupes.httpcodec.protocols.http
Modifier and TypeClassDescriptionclass
HttpDecoder<T extends HttpMessageHeader,
R extends HttpMessageHeader> Implements a decoder for HTTP. -
Uses of Decoder in org.jdrupes.httpcodec.protocols.http.client
-
Uses of Decoder in org.jdrupes.httpcodec.protocols.http.server
-
Uses of Decoder in org.jdrupes.httpcodec.protocols.websocket
Modifier and TypeMethodDescriptionDecoder<?,
?> WsProtocolProvider.createRequestDecoder
(String protocol) Decoder<?,
?> WsProtocolProvider.createResponseDecoder
(String protocol) WsDecoder.setPeerEncoder
(Encoder<WsFrameHeader, WsFrameHeader> encoder) Modifier and TypeMethodDescriptionWsEncoder.setPeerDecoder
(Decoder<WsFrameHeader, WsFrameHeader> decoder)