Uses of Class
io.vertx.core.http.PoolOptions
Packages that use PoolOptions
-
Uses of PoolOptions in io.vertx.core
Methods in io.vertx.core with parameters of type PoolOptionsModifier and TypeMethodDescriptiondefault HttpClientAgentVertx.createHttpClient(HttpClientConfig clientConfig, PoolOptions poolOptions) Create a HTTP/HTTPS client using the specified client and pool optionsdefault HttpClientAgentVertx.createHttpClient(HttpClientConfig clientConfig, ClientSSLOptions sslOptions, PoolOptions poolOptions) Create a HTTP/HTTPS client using the specified client, ssl options and pool optionsdefault HttpClientAgentVertx.createHttpClient(HttpClientOptions clientOptions, PoolOptions poolOptions) Create a HTTP/HTTPS client using the specified client and pool optionsdefault HttpClientAgentVertx.createHttpClient(PoolOptions poolOptions) Create a HTTP/HTTPS client using the specified pool options -
Uses of PoolOptions in io.vertx.core.http
Methods in io.vertx.core.http that return PoolOptionsModifier and TypeMethodDescriptionPoolOptions.setCleanerPeriod(int cleanerPeriod) Set the connection pool cleaner period in milli seconds, a non positive value disables expiration checks and connections will remain in the pool until they are closed.PoolOptions.setEventLoopSize(int eventLoopSize) Set the number of event-loop the pool use.PoolOptions.setHttp1MaxSize(int http1MaxSize) Set the maximum pool size for HTTP/1.x connectionsPoolOptions.setHttp2MaxSize(int max) Set the maximum pool size for HTTP/2 connectionsPoolOptions.setHttp3MaxSize(int max) Set the maximum pool size for HTTP/3 connectionsPoolOptions.setMaxLifetime(int maxLifetime) Establish a max lifetime for pooled connections, a value of zero disables the maximum lifetime.PoolOptions.setMaxLifetimeUnit(TimeUnit maxLifetimeUnit) Establish a max lifetime unit for pooled connections.PoolOptions.setMaxWaitQueueSize(int maxWaitQueueSize) Set the maximum requests allowed in the wait queue, any requests beyond the max size will result in a ConnectionPoolTooBusyException.Methods in io.vertx.core.http with parameters of type PoolOptionsModifier and TypeMethodDescriptionHttpClientBuilder.with(PoolOptions options) Configure the client with the given pooloptions.Constructors in io.vertx.core.http with parameters of type PoolOptions