Uses of Interface
net.spy.memcached.internal.GenericCompletionListener
Packages that use GenericCompletionListener
-
Uses of GenericCompletionListener in net.spy.memcached.internal
Classes in net.spy.memcached.internal with type parameters of type GenericCompletionListenerModifier and TypeClassDescriptionclass
AbstractListenableFuture<T,
L extends GenericCompletionListener> TheAbstractListenableFuture
implements common functionality shared by all futures that implement theListenableFuture
.interface
ListenableFuture<T,
L extends GenericCompletionListener> AFuture
that accepts one or more listeners that will be executed asynchronously.Subinterfaces of GenericCompletionListener in net.spy.memcached.internalModifier and TypeInterfaceDescriptioninterface
A listener that will be notified once the bulk get future completes.interface
A listener that will be notified once the get future completes.interface
A listener that will be notified once the operation future completes.Fields in net.spy.memcached.internal with type parameters of type GenericCompletionListenerModifier and TypeFieldDescriptionprivate List
<GenericCompletionListener<? extends Future<T>>> AbstractListenableFuture.listeners
Holds the list of listeners which will be notified upon completion.Methods in net.spy.memcached.internal with parameters of type GenericCompletionListenerModifier and TypeMethodDescriptionAbstractListenableFuture.addToListeners
(GenericCompletionListener<? extends Future<T>> listener) Add the given listener to the total list of listeners to be notified.protected void
AbstractListenableFuture.notifyListener
(ExecutorService executor, Future<?> future, GenericCompletionListener listener) Notify a specific listener of completion.AbstractListenableFuture.removeFromListeners
(GenericCompletionListener<? extends Future<T>> listener) Remove a listener from the list of registered listeners.