Uses of Interface
io.undertow.util.ObjectPool
-
Packages that use ObjectPool Package Description io.undertow.conduits io.undertow.server.handlers.encoding io.undertow.util -
-
Uses of ObjectPool in io.undertow.conduits
Methods in io.undertow.conduits that return ObjectPool Modifier and Type Method Description static ObjectPool<java.util.zip.Deflater>DeflatingStreamSinkConduit. newInstanceDeflaterPool(int deflateLevel)static ObjectPool<java.util.zip.Inflater>InflatingStreamSourceConduit. newInstanceInflaterPool()static ObjectPool<java.util.zip.Deflater>DeflatingStreamSinkConduit. simpleDeflaterPool(int poolSize, int deflateLevel)static ObjectPool<java.util.zip.Inflater>InflatingStreamSourceConduit. simpleInflaterPool(int poolSize)Constructors in io.undertow.conduits with parameters of type ObjectPool Constructor Description DeflatingStreamSinkConduit(ConduitFactory<org.xnio.conduits.StreamSinkConduit> conduitFactory, HttpServerExchange exchange, ObjectPool<java.util.zip.Deflater> deflaterPool)GzipStreamSinkConduit(ConduitFactory<org.xnio.conduits.StreamSinkConduit> conduitFactory, HttpServerExchange exchange, ObjectPool deflaterPool)GzipStreamSourceConduit(HttpServerExchange exchange, org.xnio.conduits.StreamSourceConduit next, ObjectPool<java.util.zip.Inflater> inflaterPool)InflatingStreamSourceConduit(HttpServerExchange exchange, org.xnio.conduits.StreamSourceConduit next, ObjectPool<java.util.zip.Inflater> inflaterPool) -
Uses of ObjectPool in io.undertow.server.handlers.encoding
Constructors in io.undertow.server.handlers.encoding with parameters of type ObjectPool Constructor Description DeflateEncodingProvider(ObjectPool<java.util.zip.Deflater> deflaterPool)GzipEncodingProvider(ObjectPool<java.util.zip.Deflater> deflaterPool) -
Uses of ObjectPool in io.undertow.util
Classes in io.undertow.util that implement ObjectPool Modifier and Type Class Description classNewInstanceObjectPool<T>classSimpleObjectPool<T>Simple pool that attempts to maintain a specified number of objects in the pool.
-