Uses of Class
com.tangosol.persistence.AbstractPersistenceManager.Task
-
Packages that use AbstractPersistenceManager.Task Package Description com.tangosol.persistence Contains classes and helpers for implementing various types of persistence. -
-
Uses of AbstractPersistenceManager.Task in com.tangosol.persistence
Subclasses of AbstractPersistenceManager.Task in com.tangosol.persistence Modifier and Type Class Description protected class
AbstractPersistenceManager.AbstractPersistentStore.BatchTask
Runnable implementation that is used to perform and commit a sequence of mutating persistent store operations asynchronously.protected class
AbstractPersistenceManager.AbstractPersistentStore.DeleteExtentTask
A Task implementation that deletes an extent from the associated store.protected class
AbstractPersistenceManager.AbstractPersistentStore.OpenTask
An OpenTask opens the store (parent of this inner class) with the provided store and notifies the Collector when complete.Fields in com.tangosol.persistence with type parameters of type AbstractPersistenceManager.Task Modifier and Type Field Description protected Set<AbstractPersistenceManager.Task>
AbstractPersistenceManager. f_setTasks
Set of outstanding tasks.Methods in com.tangosol.persistence with parameters of type AbstractPersistenceManager.Task Modifier and Type Method Description protected void
AbstractPersistenceManager. addTask(AbstractPersistenceManager.Task task)
Add the provided task to the set of tasks.protected void
AbstractPersistenceManager. executeTask(AbstractPersistenceManager.Task task)
Execute the specified task with the calling thread.protected void
AbstractPersistenceManager. executeTaskExclusive(AbstractPersistenceManager.Task task)
Execute the specified task with the calling thread.protected void
AbstractPersistenceManager. submitTask(AbstractPersistenceManager.Task task)
Submit the given task for execution by the daemon pool.Method parameters in com.tangosol.persistence with type arguments of type AbstractPersistenceManager.Task Modifier and Type Method Description protected void
AbstractPersistenceManager. submitTasks(List<? extends AbstractPersistenceManager.Task> listTasks)
Submit the provided list of tasks for execution to the pool or execute directly.
-