Uses of Interface
com.oracle.coherence.common.base.Collector
-
Packages that use Collector Package Description com.tangosol.persistence Contains classes and helpers for implementing various types of persistence.com.tangosol.util Contains various generic utilities. -
-
Uses of Collector in com.tangosol.persistence
Fields in com.tangosol.persistence declared as Collector Modifier and Type Field Description protected Collector<Object>
AbstractPersistenceManager.AbstractPersistentStore.BatchTask. f_collector
An optional Collector to add notifications to.protected Collector<Object>
AbstractPersistenceManager.AbstractPersistentStore.OpenTask. f_collector
TheCollector
to notify upon completion of opening the store.Methods in com.tangosol.persistence with parameters of type Collector Modifier and Type Method Description Object
AbstractPersistenceManager.AbstractPersistentStore. begin(Collector<Object> collector, Object oReceipt)
Begin a new sequence of mutating operations that should be committed to the store asynchronously as an atomic unit.Object
SafePersistenceWrappers.SafePersistentStore. begin(Collector<Object> collector, Object oReceipt)
Begin a new sequence of mutating operations that should be committed to the store asynchronously as an atomic unit.com.oracle.coherence.persistence.PersistentStore<ReadBuffer>
AbstractPersistenceManager. open(String sId, com.oracle.coherence.persistence.PersistentStore<ReadBuffer> storeFrom, Collector<Object> collector)
Open or create aPersistentStore
associated with the specified identifier and based on the providedstore
.com.oracle.coherence.persistence.PersistentStore<R>
SafePersistenceWrappers.SafePersistenceManager. open(String sId, com.oracle.coherence.persistence.PersistentStore<R> store, Collector<Object> collector)
Open or create aPersistentStore
associated with the specified identifier and based on the providedstore
.protected void
AbstractPersistenceManager.AbstractPersistentStore. submitOpen(com.oracle.coherence.persistence.PersistentStore<ReadBuffer> storeFrom, Collector<Object> collector)
Open this store either asynchronously, iff both a store to open from and a collector have been provided, or synchronously.Constructors in com.tangosol.persistence with parameters of type Collector Constructor Description BatchTask(Object oToken, Collector<Object> collector, Object oReceipt)
Create a new BatchTask.OpenTask(com.oracle.coherence.persistence.PersistentStore<ReadBuffer> storeFrom, Collector<Object> collector)
Construct an OpenTask. -
Uses of Collector in com.tangosol.util
Classes in com.tangosol.util that implement Collector Modifier and Type Class Description static class
NullImplementation.NullCollector<V>
ACollector
implementation that does nothing.Methods in com.tangosol.util that return Collector Modifier and Type Method Description static <V> Collector<V>
NullImplementation. getCollector()
Factory method: Obtain a null implementation of aCollector
.Methods in com.tangosol.util with parameters of type Collector Modifier and Type Method Description Object
NullImplementation.NullPersistentStore. begin(Collector<Object> collector, Object oReceipt)
com.oracle.coherence.persistence.PersistentStore<R>
NullImplementation.NullPersistenceManager. open(String sId, com.oracle.coherence.persistence.PersistentStore<R> store, Collector<Object> collector)
Open or create aPersistentStore
associated with the specified identifier and based on the providedstore
.Constructors in com.tangosol.util with parameters of type Collector Constructor Description Token(Collector<Object> collector, Object oReceipt)
Construct a new Token.
-