| Package | Description |
|---|---|
| org.jppf.client.persistence |
Support for job persistence on the client side.
|
| Modifier and Type | Method and Description |
|---|---|
Collection<K> |
JobPersistence.allKeys()
Get the keys of all jobs in the persistence store.
|
Collection<String> |
DefaultFilePersistenceManager.allKeys() |
void |
JobPersistence.deleteJob(K key)
Delete the job with the specified key from the persistence store.
|
void |
DefaultFilePersistenceManager.deleteJob(String key) |
JPPFJob |
JobPersistence.loadJob(K key)
Load a job from the persistence store given its key.
|
JPPFJob |
DefaultFilePersistenceManager.loadJob(String key) |
void |
JobPersistence.storeJob(K key,
JPPFJob job,
List<org.jppf.node.protocol.Task<?>> tasks)
Store the specified tasks of the specified job with the specified key.
|
void |
DefaultFilePersistenceManager.storeJob(String key,
JPPFJob job,
List<org.jppf.node.protocol.Task<?>> tasks)
Store the specified job.
|
Copyright © 2005-2019 JPPF Team.