Uses of Interface
io.undertow.util.ObjectPool
Packages that use ObjectPool
-
Uses of ObjectPool in io.undertow.conduits
Methods in io.undertow.conduits that return ObjectPoolModifier and TypeMethodDescriptionstatic ObjectPool<Deflater>
DeflatingStreamSinkConduit.newInstanceDeflaterPool
(int deflateLevel) static ObjectPool<Inflater>
InflatingStreamSourceConduit.newInstanceInflaterPool()
static ObjectPool<Deflater>
DeflatingStreamSinkConduit.simpleDeflaterPool
(int poolSize, int deflateLevel) static ObjectPool<Inflater>
InflatingStreamSourceConduit.simpleInflaterPool
(int poolSize) Constructors in io.undertow.conduits with parameters of type ObjectPoolModifierConstructorDescriptionDeflatingStreamSinkConduit
(ConduitFactory<org.xnio.conduits.StreamSinkConduit> conduitFactory, HttpServerExchange exchange, ObjectPool<Deflater> deflaterPool) GzipStreamSinkConduit
(ConduitFactory<org.xnio.conduits.StreamSinkConduit> conduitFactory, HttpServerExchange exchange, ObjectPool deflaterPool) GzipStreamSourceConduit
(HttpServerExchange exchange, org.xnio.conduits.StreamSourceConduit next, ObjectPool<Inflater> inflaterPool) InflatingStreamSourceConduit
(HttpServerExchange exchange, org.xnio.conduits.StreamSourceConduit next, ObjectPool<Inflater> inflaterPool) -
Uses of ObjectPool in io.undertow.server.handlers.encoding
Constructors in io.undertow.server.handlers.encoding with parameters of type ObjectPoolModifierConstructorDescriptionDeflateEncodingProvider
(ObjectPool<Deflater> deflaterPool) GzipEncodingProvider
(ObjectPool<Deflater> deflaterPool) -
Uses of ObjectPool in io.undertow.util
Classes in io.undertow.util that implement ObjectPoolModifier and TypeClassDescriptionclass
class
Simple pool that attempts to maintain a specified number of objects in the pool.