Uses of Interface
org.apache.hc.core5.http.impl.Http1StreamListener
-
Packages that use Http1StreamListener Package Description org.apache.hc.core5.http.impl.bootstrap HTTP/1.1 requester and server bootstrap.org.apache.hc.core5.http.impl.io Default implementation of HTTP/1.1 transport based on the classic (blocking) I/O model.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.http2.impl.nio.bootstrap HTTP/2 capable requester and server bootstrap.org.apache.hc.core5.testing.classic org.apache.hc.core5.testing.nio -
-
Uses of Http1StreamListener in org.apache.hc.core5.http.impl.bootstrap
Fields in org.apache.hc.core5.http.impl.bootstrap declared as Http1StreamListener Modifier and Type Field Description private Http1StreamListener
AsyncRequesterBootstrap. streamListener
private Http1StreamListener
AsyncServerBootstrap. streamListener
private Http1StreamListener
RequesterBootstrap. streamListener
private Http1StreamListener
ServerBootstrap. streamListener
Methods in org.apache.hc.core5.http.impl.bootstrap with parameters of type Http1StreamListener Modifier and Type Method Description AsyncRequesterBootstrap
AsyncRequesterBootstrap. setStreamListener(Http1StreamListener streamListener)
AssignsHttp1StreamListener
instance.AsyncServerBootstrap
AsyncServerBootstrap. setStreamListener(Http1StreamListener streamListener)
AssignsHttp1StreamListener
instance.RequesterBootstrap
RequesterBootstrap. setStreamListener(Http1StreamListener streamListener)
ServerBootstrap
ServerBootstrap. setStreamListener(Http1StreamListener streamListener)
AssignsExceptionListener
instance. -
Uses of Http1StreamListener in org.apache.hc.core5.http.impl.io
Fields in org.apache.hc.core5.http.impl.io declared as Http1StreamListener Modifier and Type Field Description private Http1StreamListener
HttpRequestExecutor.Builder. streamListener
private Http1StreamListener
HttpRequestExecutor. streamListener
private Http1StreamListener
HttpService.Builder. streamListener
private Http1StreamListener
HttpService. streamListener
Methods in org.apache.hc.core5.http.impl.io with parameters of type Http1StreamListener Modifier and Type Method Description HttpRequestExecutor.Builder
HttpRequestExecutor.Builder. withHttp1StreamListener(Http1StreamListener streamListener)
HttpService.Builder
HttpService.Builder. withHttp1StreamListener(Http1StreamListener streamListener)
Constructors in org.apache.hc.core5.http.impl.io with parameters of type Http1StreamListener Constructor Description HttpRequestExecutor(Timeout waitForContinue, ConnectionReuseStrategy connReuseStrategy, Http1StreamListener streamListener)
Creates new instance of HttpRequestExecutor.HttpService(HttpProcessor processor, HttpRequestMapper<HttpRequestHandler> handlerMapper, ConnectionReuseStrategy connReuseStrategy, HttpResponseFactory<ClassicHttpResponse> responseFactory, Http1StreamListener streamListener)
Create a new HTTP service.HttpService(HttpProcessor processor, HttpServerRequestHandler requestHandler, ConnectionReuseStrategy connReuseStrategy, Http1StreamListener streamListener)
Create a new HTTP service. -
Uses of Http1StreamListener in org.apache.hc.core5.http.impl.nio
Fields in org.apache.hc.core5.http.impl.nio declared as Http1StreamListener Modifier and Type Field Description private Http1StreamListener
ClientHttp1StreamDuplexer. streamListener
private Http1StreamListener
ClientHttp1StreamDuplexerFactory. streamListener
private Http1StreamListener
ServerHttp1StreamDuplexer. streamListener
private Http1StreamListener
ServerHttp1StreamDuplexerFactory. streamListener
-
Uses of Http1StreamListener in org.apache.hc.core5.http2.impl.nio.bootstrap
Fields in org.apache.hc.core5.http2.impl.nio.bootstrap declared as Http1StreamListener Modifier and Type Field Description private Http1StreamListener
H2RequesterBootstrap. http1StreamListener
private Http1StreamListener
H2ServerBootstrap. http1StreamListener
Methods in org.apache.hc.core5.http2.impl.nio.bootstrap with parameters of type Http1StreamListener Modifier and Type Method Description H2RequesterBootstrap
H2RequesterBootstrap. setStreamListener(Http1StreamListener http1StreamListener)
AssignsHttp1StreamListener
instance.H2ServerBootstrap
H2ServerBootstrap. setStreamListener(Http1StreamListener http1StreamListener)
AssignsHttp1StreamListener
instance. -
Uses of Http1StreamListener in org.apache.hc.core5.testing.classic
Classes in org.apache.hc.core5.testing.classic that implement Http1StreamListener Modifier and Type Class Description class
LoggingHttp1StreamListener
-
Uses of Http1StreamListener in org.apache.hc.core5.testing.nio
Classes in org.apache.hc.core5.testing.nio that implement Http1StreamListener Modifier and Type Class Description class
LoggingHttp1StreamListener
Methods in org.apache.hc.core5.testing.nio with parameters of type Http1StreamListener 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)
-