Uses of Interface
org.eclipse.jetty.util.Pool.Entry
Package
Description
Jetty Util : Common Utility Classes
-
Uses of Pool.Entry in org.eclipse.jetty.io.internal
Modifier and TypeMethodDescriptionCompoundPool.acquire()
QueuedPool.acquire()
CompoundPool.reserve()
QueuedPool.reserve()
-
Uses of Pool.Entry in org.eclipse.jetty.util
Modifier and TypeClassDescriptionstatic class
A Pool entry that holds metadata and a pooled object.static class
A wrapper forEntry
instances.Modifier and TypeMethodDescriptionConcurrentPool.acquire()
LockedPool.acquire()
LockedPool.acquire
(Function<Pool.Entry<P>, P> creator) Pool.acquire()
Acquires an entry from the pool.default Pool.Entry<P>
Pool.acquire
(Function<Pool.Entry<P>, P> creator) Acquires an entry from the pool, reserving and creating a new entry if necessary.Pool.Wrapper.acquire()
Pool.Wrapper.acquire
(Function<Pool.Entry<W>, W> creator) Pool.Entry.Wrapper.getWrapped()
ConcurrentPool.reserve()
LockedPool.reserve()
Pool.reserve()
Creates a new disabled slot into the pool.Pool.Wrapper.reserve()
Modifier and TypeMethodDescriptionConcurrentPool.stream()
LockedPool.stream()
Pool.stream()
Pool.Wrapper.stream()
ConcurrentPool.terminate()
LockedPool.terminate()
Pool.terminate()
Terminates thisPool
.Pool.Wrapper.terminate()
Modifier and TypeMethodDescriptiondefault void
LockedPool.Tracker.acquired
(Pool<T> pool, Pool.Entry<T> entry) Callback method invoked when an entry isacquired
.default void
LockedPool.Tracker.released
(Pool<T> pool, Pool.Entry<T> entry) Callback method invoked when an entry isreleased
.default void
LockedPool.Tracker.removed
(Pool<T> pool, Pool.Entry<T> entry) Callback method invoked when an entry isremoved
.Modifier and TypeMethodDescriptionLockedPool.acquire
(Function<Pool.Entry<P>, P> creator) default Pool.Entry<P>
Pool.acquire
(Function<Pool.Entry<P>, P> creator) Acquires an entry from the pool, reserving and creating a new entry if necessary.Pool.Wrapper.acquire
(Function<Pool.Entry<W>, W> creator) default void
LockedPool.Tracker.terminated
(Pool<T> pool, Collection<Pool.Entry<T>> entries) Callback method invoked when thePool
isterminated
.