Uses of Interface
org.apache.http.protocol.HttpProcessor
-
Packages that use HttpProcessor Package Description org.apache.http.impl.bootstrap Embedded server and server bootstrap.org.apache.http.impl.nio.bootstrap Embedded non-blocking server and server bootstrap.org.apache.http.nio.protocol Core HTTP protocol execution framework and HTTP protocol handlers for asynchronous, event driven communication.org.apache.http.protocol Core HTTP protocol execution framework and HTTP protocol handlers for synchronous, blocking communication. -
-
Uses of HttpProcessor in org.apache.http.impl.bootstrap
Methods in org.apache.http.impl.bootstrap with parameters of type HttpProcessor Modifier and Type Method Description ServerBootstrap
ServerBootstrap. setHttpProcessor(HttpProcessor httpProcessor)
AssignsHttpProcessor
instance. -
Uses of HttpProcessor in org.apache.http.impl.nio.bootstrap
Methods in org.apache.http.impl.nio.bootstrap with parameters of type HttpProcessor Modifier and Type Method Description ServerBootstrap
ServerBootstrap. setHttpProcessor(HttpProcessor httpProcessor)
AssignsHttpProcessor
instance. -
Uses of HttpProcessor in org.apache.http.nio.protocol
Fields in org.apache.http.nio.protocol declared as HttpProcessor Modifier and Type Field Description protected HttpProcessor
NHttpHandlerBase. httpProcessor
Deprecated.Methods in org.apache.http.nio.protocol that return HttpProcessor Modifier and Type Method Description HttpProcessor
BasicAsyncRequestExecutionHandler. getHttpProcessor()
Deprecated.HttpProcessor
HttpAsyncRequestExecutionHandler. getHttpProcessor()
Deprecated.ReturnsHttpProcessor
implementation to be used to process HTTP request and response messages for protocol compliance.HttpProcessor
HttpAsyncService. getHttpProcessor()
Gets the HttpProcessor for this service. -
Uses of HttpProcessor in org.apache.http.protocol
Classes in org.apache.http.protocol that implement HttpProcessor Modifier and Type Class Description class
BasicHttpProcessor
Deprecated.(4.3)class
ImmutableHttpProcessor
ImmutableHttpProcessor
.Methods in org.apache.http.protocol that return HttpProcessor Modifier and Type Method Description HttpProcessor
HttpProcessorBuilder. build()
Methods in org.apache.http.protocol with parameters of type HttpProcessor Modifier and Type Method Description void
HttpRequestExecutor. postProcess(HttpResponse response, HttpProcessor processor, HttpContext context)
Post-processes the given response using the given protocol processor and completes the process of request execution.void
HttpRequestExecutor. preProcess(HttpRequest request, HttpProcessor processor, HttpContext context)
Pre-process the given request using the given protocol processor and initiates the process of request execution.void
HttpService. setHttpProcessor(HttpProcessor processor)
Deprecated.(4.1) setHttpProcessor
using constructor
-