Uses of Class
org.eclipse.jetty.util.Pool.Entry
-
Packages that use Pool.Entry Package Description org.eclipse.jetty.client Jetty Client : Implementation and Core Classes This package provides APIs, utility classes and an implementation of an asynchronous HTTP client.org.eclipse.jetty.util Jetty Util : Common Utility Classesorg.eclipse.jetty.xml Jetty Xml : IoC Mechanism for Jetty Configuration -
-
Uses of Pool.Entry in org.eclipse.jetty.client
Fields in org.eclipse.jetty.client declared as Pool.Entry Modifier and Type Field Description private Pool.EntryAbstractConnectionPool.EntryHolder. entryprivate Pool.EntryAbstractConnectionPool.FutureConnection. reservedConstructors in org.eclipse.jetty.client with parameters of type Pool.Entry Constructor Description EntryHolder(Pool.Entry entry)FutureConnection(Pool.Entry reserved) -
Uses of Pool.Entry in org.eclipse.jetty.util
Subclasses of Pool.Entry in org.eclipse.jetty.util Modifier and Type Class Description private classPool.MonoEntryA Pool entry that holds metadata and a pooled object, that can only be acquired concurrently at most once, and can be acquired/released multiple times.(package private) classPool.MultiEntryA Pool entry that holds metadata and a pooled object, that can be acquired concurrently multiple times, and can be acquired/released multiple times.Fields in org.eclipse.jetty.util with type parameters of type Pool.Entry Modifier and Type Field Description private java.lang.ThreadLocal<Pool.Entry>Pool. cacheprivate java.util.List<Pool.Entry>Pool. entriesMethods in org.eclipse.jetty.util that return Pool.Entry Modifier and Type Method Description Pool.EntryPool. acquire()Acquires an entry from the pool.Pool.EntryPool. acquire(java.util.function.Function<Pool.Entry,T> creator)Acquires an entry from the pool, reserving and creating a new entry if necessary.Pool.EntryPool. acquireAt(int idx)Deprecated.No longer supported.private Pool.EntryPool. newEntry()Pool.EntryPool. reserve()Creates a new disabled slot into the pool.Pool.EntryPool. reserve(int allotment)Deprecated.UsePool.reserve()insteadMethods in org.eclipse.jetty.util that return types with arguments of type Pool.Entry Modifier and Type Method Description java.util.Collection<Pool.Entry>Pool. values()Methods in org.eclipse.jetty.util with parameters of type Pool.Entry Modifier and Type Method Description booleanPool. release(Pool.Entry entry)Releases anacquiredentry to the pool.booleanPool. remove(Pool.Entry entry)Removes an entry from the pool.Method parameters in org.eclipse.jetty.util with type arguments of type Pool.Entry Modifier and Type Method Description Pool.EntryPool. acquire(java.util.function.Function<Pool.Entry,T> creator)Acquires an entry from the pool, reserving and creating a new entry if necessary. -
Uses of Pool.Entry in org.eclipse.jetty.xml
Fields in org.eclipse.jetty.xml declared as Pool.Entry Modifier and Type Field Description private Pool.EntryXmlConfiguration.ConfigurationParser. _entryConstructors in org.eclipse.jetty.xml with parameters of type Pool.Entry Constructor Description ConfigurationParser(Pool.Entry entry)
-