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.
Default implementations of core HTTP/2 APIs.
Default implementation of HTTP/2 transport based on
the asynchronous (non-blocking) I/O model.
HTTP/2 capable requester and server bootstrap.
-
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 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
Fields in org.apache.hc.core5.http.impl.bootstrap declared as HttpProcessorModifier and TypeFieldDescriptionprivate HttpProcessorAsyncRequesterBootstrap.httpProcessorprivate HttpProcessorAsyncServerBootstrap.httpProcessorprivate final HttpProcessorHttpRequester.httpProcessorprivate HttpProcessorRequesterBootstrap.httpProcessorprivate HttpProcessorServerBootstrap.httpProcessorMethods in org.apache.hc.core5.http.impl.bootstrap with parameters of type HttpProcessorModifier and TypeMethodDescriptionfinal AsyncRequesterBootstrapAsyncRequesterBootstrap.setHttpProcessor(HttpProcessor httpProcessor) AssignsHttpProcessorinstance.final AsyncServerBootstrapAsyncServerBootstrap.setHttpProcessor(HttpProcessor httpProcessor) AssignsHttpProcessorinstance.final RequesterBootstrapRequesterBootstrap.setHttpProcessor(HttpProcessor httpProcessor) AssignsHttpProcessorinstance.final ServerBootstrapServerBootstrap.setHttpProcessor(HttpProcessor httpProcessor) AssignsHttpProcessorinstance.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
Fields in org.apache.hc.core5.http.impl.io declared as HttpProcessorModifier and TypeFieldDescriptionprivate HttpProcessorHttpService.Builder.processorprivate final HttpProcessorHttpService.processorMethods in org.apache.hc.core5.http.impl.io with parameters of type HttpProcessorModifier and TypeMethodDescriptionvoidHttpRequestExecutor.postProcess(ClassicHttpResponse response, HttpProcessor processor, HttpContext context) Post-processes the given response using the given protocol processor and completes the process of request execution.voidHttpRequestExecutor.preProcess(ClassicHttpRequest request, HttpProcessor processor, HttpContext context) 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, ConnectionReuseStrategy connReuseStrategy, Http1StreamListener streamListener) Create a new HTTP service. -
Uses of HttpProcessor in org.apache.hc.core5.http.impl.nio
Fields in org.apache.hc.core5.http.impl.nio declared as HttpProcessorModifier and TypeFieldDescriptionprivate final HttpProcessorClientHttp1StreamDuplexer.httpProcessorprivate final HttpProcessorClientHttp1StreamDuplexerFactory.httpProcessorprivate final HttpProcessorClientHttp1StreamHandler.httpProcessorprivate final HttpProcessorServerHttp1StreamDuplexer.httpProcessorprivate final HttpProcessorServerHttp1StreamDuplexerFactory.httpProcessorprivate final HttpProcessorServerHttp1StreamHandler.httpProcessorConstructors 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) (package private)ClientHttp1StreamHandler(Http1StreamChannel<HttpRequest> outputChannel, HttpProcessor httpProcessor, Http1Config http1Config, ConnectionReuseStrategy connectionReuseStrategy, AsyncClientExchangeHandler exchangeHandler, HttpCoreContext context) 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) ServerHttp1StreamDuplexerFactory(HttpProcessor httpProcessor, HandlerFactory<AsyncServerExchangeHandler> exchangeHandlerFactory, Http1Config http1Config, CharCodingConfig charCodingConfig, ConnectionReuseStrategy connectionReuseStrategy, NHttpMessageParserFactory<HttpRequest> requestParserFactory, NHttpMessageWriterFactory<HttpResponse> responseWriterFactory, ContentLengthStrategy incomingContentStrategy, ContentLengthStrategy outgoingContentStrategy, Http1StreamListener streamListener) ServerHttp1StreamDuplexerFactory(HttpProcessor httpProcessor, HandlerFactory<AsyncServerExchangeHandler> exchangeHandlerFactory, Http1Config http1Config, CharCodingConfig charCodingConfig, ConnectionReuseStrategy connectionReuseStrategy, NHttpMessageParserFactory<HttpRequest> requestParserFactory, NHttpMessageWriterFactory<HttpResponse> responseWriterFactory, Http1StreamListener streamListener) ServerHttp1StreamDuplexerFactory(HttpProcessor httpProcessor, HandlerFactory<AsyncServerExchangeHandler> exchangeHandlerFactory, Http1Config http1Config, CharCodingConfig charCodingConfig, Http1StreamListener streamListener) (package private)ServerHttp1StreamHandler(Http1StreamChannel<HttpResponse> outputChannel, HttpProcessor httpProcessor, ConnectionReuseStrategy connectionReuseStrategy, HandlerFactory<AsyncServerExchangeHandler> exchangeHandlerFactory, HttpCoreContext context) -
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 -
Uses of HttpProcessor in org.apache.hc.core5.http2.impl
Methods in org.apache.hc.core5.http2.impl that return HttpProcessorModifier and TypeMethodDescriptionstatic HttpProcessorH2Processors.client()static HttpProcessorstatic HttpProcessorH2Processors.server()static HttpProcessor -
Uses of HttpProcessor in org.apache.hc.core5.http2.impl.nio
Fields in org.apache.hc.core5.http2.impl.nio declared as HttpProcessorModifier and TypeFieldDescriptionprivate final HttpProcessorAbstractH2StreamMultiplexer.httpProcessorprivate final HttpProcessorClientH2StreamHandler.httpProcessorprivate final HttpProcessorClientH2StreamMultiplexerFactory.httpProcessorprivate final HttpProcessorClientPushH2StreamHandler.httpProcessorprivate final HttpProcessorServerH2StreamHandler.httpProcessorprivate final HttpProcessorServerH2StreamMultiplexerFactory.httpProcessorprivate final HttpProcessorServerPushH2StreamHandler.httpProcessorMethods in org.apache.hc.core5.http2.impl.nio with parameters of type HttpProcessorModifier and TypeMethodDescription(package private) abstract H2StreamHandlerAbstractH2StreamMultiplexer.createLocallyInitiatedStream(ExecutableCommand command, H2StreamChannel channel, HttpProcessor httpProcessor, BasicHttpConnectionMetrics connMetrics) (package private) H2StreamHandlerClientH2StreamMultiplexer.createLocallyInitiatedStream(ExecutableCommand command, H2StreamChannel channel, HttpProcessor httpProcessor, BasicHttpConnectionMetrics connMetrics) (package private) H2StreamHandlerServerH2StreamMultiplexer.createLocallyInitiatedStream(ExecutableCommand command, H2StreamChannel channel, HttpProcessor httpProcessor, BasicHttpConnectionMetrics connMetrics) (package private) abstract H2StreamHandlerAbstractH2StreamMultiplexer.createRemotelyInitiatedStream(H2StreamChannel channel, HttpProcessor httpProcessor, BasicHttpConnectionMetrics connMetrics, HandlerFactory<AsyncPushConsumer> pushHandlerFactory) (package private) H2StreamHandlerClientH2StreamMultiplexer.createRemotelyInitiatedStream(H2StreamChannel channel, HttpProcessor httpProcessor, BasicHttpConnectionMetrics connMetrics, HandlerFactory<AsyncPushConsumer> pushHandlerFactory) (package private) H2StreamHandlerServerH2StreamMultiplexer.createRemotelyInitiatedStream(H2StreamChannel channel, HttpProcessor httpProcessor, BasicHttpConnectionMetrics connMetrics, HandlerFactory<AsyncPushConsumer> pushHandlerFactory) Constructors in org.apache.hc.core5.http2.impl.nio with parameters of type HttpProcessorModifierConstructorDescription(package private)AbstractH2StreamMultiplexer(ProtocolIOSession ioSession, FrameFactory frameFactory, StreamIdGenerator idGenerator, HttpProcessor httpProcessor, CharCodingConfig charCodingConfig, H2Config h2Config, H2StreamListener streamListener) (package private)ClientH2StreamHandler(H2StreamChannel outputChannel, HttpProcessor httpProcessor, BasicHttpConnectionMetrics connMetrics, AsyncClientExchangeHandler exchangeHandler, HandlerFactory<AsyncPushConsumer> pushHandlerFactory, HttpCoreContext context) ClientH2StreamMultiplexer(ProtocolIOSession ioSession, HttpProcessor httpProcessor, HandlerFactory<AsyncPushConsumer> pushHandlerFactory, H2Config h2Config, CharCodingConfig charCodingConfig) ClientH2StreamMultiplexer(ProtocolIOSession ioSession, HttpProcessor httpProcessor, H2Config h2Config, CharCodingConfig charCodingConfig) ClientH2StreamMultiplexer(ProtocolIOSession ioSession, FrameFactory frameFactory, HttpProcessor httpProcessor, HandlerFactory<AsyncPushConsumer> pushHandlerFactory, H2Config h2Config, CharCodingConfig charCodingConfig, H2StreamListener streamListener) ClientH2StreamMultiplexerFactory(HttpProcessor httpProcessor, HandlerFactory<AsyncPushConsumer> pushHandlerFactory, H2Config h2Config, CharCodingConfig charCodingConfig, H2StreamListener streamListener) ClientH2StreamMultiplexerFactory(HttpProcessor httpProcessor, HandlerFactory<AsyncPushConsumer> pushHandlerFactory, H2StreamListener streamListener) ClientH2StreamMultiplexerFactory(HttpProcessor httpProcessor, H2StreamListener streamListener) (package private)ClientPushH2StreamHandler(H2StreamChannel outputChannel, HttpProcessor httpProcessor, BasicHttpConnectionMetrics connMetrics, HandlerFactory<AsyncPushConsumer> pushHandlerFactory, HttpCoreContext context) (package private)ServerH2StreamHandler(H2StreamChannel outputChannel, HttpProcessor httpProcessor, BasicHttpConnectionMetrics connMetrics, HandlerFactory<AsyncServerExchangeHandler> exchangeHandlerFactory, HttpCoreContext context) ServerH2StreamMultiplexer(ProtocolIOSession ioSession, HttpProcessor httpProcessor, HandlerFactory<AsyncServerExchangeHandler> exchangeHandlerFactory, CharCodingConfig charCodingConfig, H2Config h2Config) ServerH2StreamMultiplexer(ProtocolIOSession ioSession, FrameFactory frameFactory, HttpProcessor httpProcessor, HandlerFactory<AsyncServerExchangeHandler> exchangeHandlerFactory, CharCodingConfig charCodingConfig, H2Config h2Config, H2StreamListener streamListener) ServerH2StreamMultiplexerFactory(HttpProcessor httpProcessor, HandlerFactory<AsyncServerExchangeHandler> exchangeHandlerFactory, H2Config h2Config, CharCodingConfig charCodingConfig, H2StreamListener streamListener) (package private)ServerPushH2StreamHandler(H2StreamChannel outputChannel, HttpProcessor httpProcessor, BasicHttpConnectionMetrics connMetrics, AsyncPushProducer pushProducer, HttpCoreContext context) -
Uses of HttpProcessor in org.apache.hc.core5.http2.impl.nio.bootstrap
Fields in org.apache.hc.core5.http2.impl.nio.bootstrap declared as HttpProcessorModifier and TypeFieldDescriptionprivate HttpProcessorH2MultiplexingRequesterBootstrap.httpProcessorprivate HttpProcessorH2RequesterBootstrap.httpProcessorprivate HttpProcessorH2ServerBootstrap.httpProcessorMethods in org.apache.hc.core5.http2.impl.nio.bootstrap with parameters of type HttpProcessorModifier and TypeMethodDescriptionH2MultiplexingRequesterBootstrap.setHttpProcessor(HttpProcessor httpProcessor) AssignsHttpProcessorinstance.final H2RequesterBootstrapH2RequesterBootstrap.setHttpProcessor(HttpProcessor httpProcessor) AssignsHttpProcessorinstance.final H2ServerBootstrapH2ServerBootstrap.setHttpProcessor(HttpProcessor httpProcessor) AssignsHttpProcessorinstance. -
Uses of HttpProcessor in org.apache.hc.core5.testing.classic
Methods in org.apache.hc.core5.testing.classic with parameters of type HttpProcessorModifier and TypeMethodDescriptionvoidClassicTestClient.start(HttpProcessor httpProcessor) voidClassicTestServer.start(Http1Config http1Config, HttpProcessor httpProcessor, Decorator<HttpServerRequestHandler> handlerDecorator) -
Uses of HttpProcessor in org.apache.hc.core5.testing.nio
Fields in org.apache.hc.core5.testing.nio declared as HttpProcessorModifier and TypeFieldDescriptionprivate final HttpProcessorInternalClientHttp1EventHandlerFactory.httpProcessorprivate final HttpProcessorInternalClientProtocolNegotiationStarter.httpProcessorprivate final HttpProcessorInternalServerHttp1EventHandlerFactory.httpProcessorprivate final HttpProcessorInternalServerProtocolNegotiationStarter.httpProcessorMethods in org.apache.hc.core5.testing.nio with parameters of type HttpProcessorModifier and TypeMethodDescriptionprotected 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) voidH2TestClient.start(HttpProcessor httpProcessor, Http1Config http1Config) voidH2TestClient.start(HttpProcessor httpProcessor, H2Config h2Config) H2TestServer.start(HttpProcessor httpProcessor, Decorator<AsyncServerExchangeHandler> exchangeHandlerDecorator, Http1Config http1Config) H2TestServer.start(HttpProcessor httpProcessor, Decorator<AsyncServerExchangeHandler> exchangeHandlerDecorator, H2Config h2Config) voidHttp1TestClient.start(HttpProcessor httpProcessor, Http1Config http1Config) Http1TestServer.start(HttpProcessor httpProcessor, Decorator<AsyncServerExchangeHandler> exchangeHandlerDecorator, Http1Config http1Config) Http1TestServer.start(HttpProcessor httpProcessor, Http1Config http1Config) Constructors in org.apache.hc.core5.testing.nio with parameters of type HttpProcessorModifierConstructorDescription(package private)InternalClientHttp1EventHandlerFactory(HttpProcessor httpProcessor, Http1Config http1Config, CharCodingConfig charCodingConfig, ConnectionReuseStrategy connectionReuseStrategy, SSLContext sslContext, SSLSessionInitializer sslSessionInitializer, SSLSessionVerifier sslSessionVerifier) (package private)InternalClientProtocolNegotiationStarter(HttpProcessor httpProcessor, HandlerFactory<AsyncPushConsumer> exchangeHandlerFactory, HttpVersionPolicy versionPolicy, H2Config h2Config, Http1Config http1Config, CharCodingConfig charCodingConfig, SSLContext sslContext, SSLSessionInitializer sslSessionInitializer, SSLSessionVerifier sslSessionVerifier) (package private)InternalServerHttp1EventHandlerFactory(HttpProcessor httpProcessor, HandlerFactory<AsyncServerExchangeHandler> exchangeHandlerFactory, Http1Config http1Config, CharCodingConfig charCodingConfig, ConnectionReuseStrategy connectionReuseStrategy, SSLContext sslContext, SSLSessionInitializer sslSessionInitializer, SSLSessionVerifier sslSessionVerifier) InternalServerProtocolNegotiationStarter(HttpProcessor httpProcessor, HandlerFactory<AsyncServerExchangeHandler> exchangeHandlerFactory, HttpVersionPolicy versionPolicy, H2Config h2Config, Http1Config http1Config, CharCodingConfig charCodingConfig, SSLContext sslContext, SSLSessionInitializer sslSessionInitializer, SSLSessionVerifier sslSessionVerifier)