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 classAbstractMessageParser<T extends HttpMessage>AbstractNHttpMessageParserthat serves as a base for all message parser implementations.classDefaultHttpRequestParser<T extends HttpRequest>DefaultNHttpMessageParserimplementation forHttpRequests.classDefaultHttpResponseParser<T extends HttpResponse>DefaultNHttpMessageParserimplementation forHttpResponses.Fields in org.apache.hc.core5.http.impl.nio declared as NHttpMessageParser Modifier and Type Field Description private NHttpMessageParser<IncomingMessage>AbstractHttp1StreamDuplexer. incomingMessageParserMethods 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 ClientHttp1StreamDuplexerInternalClientHttp1EventHandlerFactory. createClientHttp1StreamDuplexer(ProtocolIOSession ioSession, HttpProcessor httpProcessor, Http1Config http1Config, CharCodingConfig charCodingConfig, ConnectionReuseStrategy connectionReuseStrategy, NHttpMessageParser<HttpResponse> incomingMessageParser, NHttpMessageWriter<HttpRequest> outgoingMessageWriter, ContentLengthStrategy incomingContentStrategy, ContentLengthStrategy outgoingContentStrategy, Http1StreamListener streamListener)protected ServerHttp1StreamDuplexerInternalServerHttp1EventHandlerFactory. 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)
-