Uses of Interface
org.apache.hc.core5.http.protocol.HttpProcessor
Packages that use HttpProcessor
Package
Description
Default implementations of core HTTP APIs.
HTTP/1.1 requester and server bootstrap.
Default implementation of HTTP/1.1 transport based on the classic
(blocking) I/O model.
Default implementation of HTTP/1.1 transport based on
the asynchronous (non-blocking) I/O model.
Core HTTP protocol interceptors.
-
Uses of HttpProcessor in org.apache.hc.core5.http.impl
Methods in org.apache.hc.core5.http.impl that return HttpProcessorModifier and TypeMethodDescriptionstatic HttpProcessorHttpProcessors.client()CreatesHttpProcessorinitialized with default protocol interceptors for client side HTTP/1.1 processing.static HttpProcessorCreatesHttpProcessorinitialized with default protocol interceptors for client side HTTP/1.1 processing.static HttpProcessorCreates anHttpProcessorfor client-side HTTP/2 processing.static HttpProcessorHttpProcessors.clientStrict()Creates anHttpProcessorfor client-side HTTP/2 processing with strict protocol validation interceptors by default.static HttpProcessorHttpProcessors.clientStrict(String agentInfo) Creates anHttpProcessorfor client-side HTTP/2 processing with strict protocol validation interceptors, using the specified agent information.static HttpProcessorHttpProcessors.server()CreatesHttpProcessorinitialized with default protocol interceptors for server side HTTP/1.1 processing.static HttpProcessorCreatesHttpProcessorinitialized with default protocol interceptors for server side HTTP/1.1 processing. -
Uses of HttpProcessor in org.apache.hc.core5.http.impl.bootstrap
Methods in org.apache.hc.core5.http.impl.bootstrap with parameters of type HttpProcessorModifier and TypeMethodDescriptionfinal AsyncRequesterBootstrapAsyncRequesterBootstrap.setHttpProcessor(HttpProcessor httpProcessor) SetsHttpProcessorinstance.final AsyncServerBootstrapAsyncServerBootstrap.setHttpProcessor(HttpProcessor httpProcessor) SetsHttpProcessorinstance.final RequesterBootstrapRequesterBootstrap.setHttpProcessor(HttpProcessor httpProcessor) SetsHttpProcessorinstance.final ServerBootstrapServerBootstrap.setHttpProcessor(HttpProcessor httpProcessor) SetsHttpProcessorinstance.Constructors in org.apache.hc.core5.http.impl.bootstrap with parameters of type HttpProcessorModifierConstructorDescriptionHttpRequester(HttpRequestExecutor requestExecutor, HttpProcessor httpProcessor, ManagedConnPool<HttpHost, HttpClientConnection> connPool, SocketConfig socketConfig, HttpConnectionFactory<? extends HttpClientConnection> connectFactory, SSLSocketFactory sslSocketFactory, Callback<SSLParameters> sslSetupHandler, SSLSessionVerifier sslSessionVerifier, Resolver<HttpHost, InetSocketAddress> addressResolver) UseRequesterBootstrapto create instances of this class. -
Uses of HttpProcessor in org.apache.hc.core5.http.impl.io
Methods in org.apache.hc.core5.http.impl.io with parameters of type HttpProcessorModifier and TypeMethodDescriptionvoidHttpRequestExecutor.postProcess(ClassicHttpResponse response, HttpProcessor processor, HttpContext localContext) Post-processes the given response using the given protocol processor and completes the process of request execution.voidHttpRequestExecutor.preProcess(ClassicHttpRequest request, HttpProcessor processor, HttpContext localContext) Pre-process the given request using the given protocol processor and initiates the process of request execution.HttpService.Builder.withHttpProcessor(HttpProcessor processor) Constructors in org.apache.hc.core5.http.impl.io with parameters of type HttpProcessorModifierConstructorDescriptionHttpService(HttpProcessor processor, HttpRequestMapper<HttpRequestHandler> handlerMapper, ConnectionReuseStrategy connReuseStrategy, HttpResponseFactory<ClassicHttpResponse> responseFactory) Create a new HTTP service.HttpService(HttpProcessor processor, HttpRequestMapper<HttpRequestHandler> handlerMapper, ConnectionReuseStrategy connReuseStrategy, HttpResponseFactory<ClassicHttpResponse> responseFactory, Http1StreamListener streamListener) Create a new HTTP service.HttpService(HttpProcessor processor, HttpServerRequestHandler requestHandler) Create a new HTTP service.HttpService(HttpProcessor processor, HttpServerRequestHandler requestHandler, Http1Config http1Config, ConnectionReuseStrategy connReuseStrategy, Http1StreamListener streamListener) Create a new HTTP service.HttpService(HttpProcessor processor, HttpServerRequestHandler requestHandler, ConnectionReuseStrategy connReuseStrategy, Http1StreamListener streamListener) Create a new HTTP service. -
Uses of HttpProcessor in org.apache.hc.core5.http.impl.nio
Constructors in org.apache.hc.core5.http.impl.nio with parameters of type HttpProcessorModifierConstructorDescriptionClientHttp1StreamDuplexer(ProtocolIOSession ioSession, HttpProcessor httpProcessor, Http1Config http1Config, CharCodingConfig charCodingConfig, ConnectionReuseStrategy connectionReuseStrategy, NHttpMessageParser<HttpResponse> incomingMessageParser, NHttpMessageWriter<HttpRequest> outgoingMessageWriter, ContentLengthStrategy incomingContentStrategy, ContentLengthStrategy outgoingContentStrategy, Http1StreamListener streamListener) ClientHttp1StreamDuplexerFactory(HttpProcessor httpProcessor, Http1Config http1Config, CharCodingConfig charCodingConfig) ClientHttp1StreamDuplexerFactory(HttpProcessor httpProcessor, Http1Config http1Config, CharCodingConfig charCodingConfig, ConnectionReuseStrategy connectionReuseStrategy, NHttpMessageParserFactory<HttpResponse> responseParserFactory, NHttpMessageWriterFactory<HttpRequest> requestWriterFactory, ContentLengthStrategy incomingContentStrategy, ContentLengthStrategy outgoingContentStrategy, Http1StreamListener streamListener) ClientHttp1StreamDuplexerFactory(HttpProcessor httpProcessor, Http1Config http1Config, CharCodingConfig charCodingConfig, ConnectionReuseStrategy connectionReuseStrategy, NHttpMessageParserFactory<HttpResponse> responseParserFactory, NHttpMessageWriterFactory<HttpRequest> requestWriterFactory, Http1StreamListener streamListener) ClientHttp1StreamDuplexerFactory(HttpProcessor httpProcessor, Http1Config http1Config, CharCodingConfig charCodingConfig, Http1StreamListener streamListener) ServerHttp1StreamDuplexer(ProtocolIOSession ioSession, HttpProcessor httpProcessor, HandlerFactory<AsyncServerExchangeHandler> exchangeHandlerFactory, String scheme, Http1Config http1Config, CharCodingConfig charCodingConfig, ConnectionReuseStrategy connectionReuseStrategy, NHttpMessageParser<HttpRequest> incomingMessageParser, NHttpMessageWriter<HttpResponse> outgoingMessageWriter, ContentLengthStrategy incomingContentStrategy, ContentLengthStrategy outgoingContentStrategy, Http1StreamListener streamListener, Callback<Exception> exceptionCallback) ServerHttp1StreamDuplexerFactory(HttpProcessor httpProcessor, HandlerFactory<AsyncServerExchangeHandler> exchangeHandlerFactory, Http1Config http1Config, CharCodingConfig charCodingConfig, ConnectionReuseStrategy connectionReuseStrategy, NHttpMessageParserFactory<HttpRequest> requestParserFactory, NHttpMessageWriterFactory<HttpResponse> responseWriterFactory, ContentLengthStrategy incomingContentStrategy, ContentLengthStrategy outgoingContentStrategy, Http1StreamListener streamListener, Callback<Exception> exceptionCallback) ServerHttp1StreamDuplexerFactory(HttpProcessor httpProcessor, HandlerFactory<AsyncServerExchangeHandler> exchangeHandlerFactory, Http1Config http1Config, CharCodingConfig charCodingConfig, ConnectionReuseStrategy connectionReuseStrategy, NHttpMessageParserFactory<HttpRequest> requestParserFactory, NHttpMessageWriterFactory<HttpResponse> responseWriterFactory, Http1StreamListener streamListener, Callback<Exception> exceptionCallback) ServerHttp1StreamDuplexerFactory(HttpProcessor httpProcessor, HandlerFactory<AsyncServerExchangeHandler> exchangeHandlerFactory, Http1Config http1Config, CharCodingConfig charCodingConfig, Http1StreamListener streamListener, Callback<Exception> exceptionCallback) -
Uses of HttpProcessor in org.apache.hc.core5.http.protocol
Classes in org.apache.hc.core5.http.protocol that implement HttpProcessorMethods in org.apache.hc.core5.http.protocol that return HttpProcessor