Uses of Interface
org.apache.hc.core5.http.nio.NHttpMessageParser
-
Packages that use NHttpMessageParser Package Description org.apache.hc.core5.http.impl.nio Default implementation of HTTP/1.1 transport based on the asynchronous (non-blocking) I/O model.org.apache.hc.core5.http.nio Core HTTP transport APIs based on the asynchronous, event driven I/O model.org.apache.hc.core5.testing.nio -
-
Uses of NHttpMessageParser in org.apache.hc.core5.http.impl.nio
Classes in org.apache.hc.core5.http.impl.nio that implement NHttpMessageParser Modifier and Type Class Description class
AbstractMessageParser<T extends HttpMessage>
AbstractNHttpMessageParser
that serves as a base for all message parser implementations.class
DefaultHttpRequestParser<T extends HttpRequest>
DefaultNHttpMessageParser
implementation forHttpRequest
s.class
DefaultHttpResponseParser<T extends HttpResponse>
DefaultNHttpMessageParser
implementation forHttpResponse
s.Fields in org.apache.hc.core5.http.impl.nio declared as NHttpMessageParser Modifier and Type Field Description private NHttpMessageParser<IncomingMessage>
AbstractHttp1StreamDuplexer. incomingMessageParser
Methods in org.apache.hc.core5.http.impl.nio that return NHttpMessageParser Modifier and Type Method Description NHttpMessageParser<HttpRequest>
DefaultHttpRequestParserFactory. create()
NHttpMessageParser<HttpResponse>
DefaultHttpResponseParserFactory. create()
-
Uses of NHttpMessageParser in org.apache.hc.core5.http.nio
Methods in org.apache.hc.core5.http.nio that return NHttpMessageParser Modifier and Type Method Description NHttpMessageParser<T>
NHttpMessageParserFactory. create()
-
Uses of NHttpMessageParser in org.apache.hc.core5.testing.nio
Methods in org.apache.hc.core5.testing.nio with parameters of type NHttpMessageParser Modifier and Type Method Description protected ClientHttp1StreamDuplexer
InternalClientHttp1EventHandlerFactory. createClientHttp1StreamDuplexer(ProtocolIOSession ioSession, HttpProcessor httpProcessor, Http1Config http1Config, CharCodingConfig charCodingConfig, ConnectionReuseStrategy connectionReuseStrategy, NHttpMessageParser<HttpResponse> incomingMessageParser, NHttpMessageWriter<HttpRequest> outgoingMessageWriter, ContentLengthStrategy incomingContentStrategy, ContentLengthStrategy outgoingContentStrategy, Http1StreamListener streamListener)
protected ServerHttp1StreamDuplexer
InternalServerHttp1EventHandlerFactory. createServerHttp1StreamDuplexer(ProtocolIOSession ioSession, HttpProcessor httpProcessor, HandlerFactory<AsyncServerExchangeHandler> exchangeHandlerFactory, Http1Config http1Config, CharCodingConfig charCodingConfig, ConnectionReuseStrategy connectionReuseStrategy, NHttpMessageParser<HttpRequest> incomingMessageParser, NHttpMessageWriter<HttpResponse> outgoingMessageWriter, ContentLengthStrategy incomingContentStrategy, ContentLengthStrategy outgoingContentStrategy, Http1StreamListener streamListener)
-