Modifier and Type | Method and Description |
---|---|
void |
IOperationDelegate.onOperationFailed(IOperation operation)
Notifies this listener that the watched
IOperation failed. |
void |
DatasourceAwareDelegateTransformer.onOperationFailed(IOperation operation) |
void |
AbstractOperationDelegate.onOperationFailed(IOperation operation) |
void |
IOperationDelegate.onOperationFinished(IOperation operation)
Notifies this listener that the watched
IOperation finished. |
void |
AbstractOperationDelegate.onOperationFinished(IOperation operation) |
void |
DatasourceAwareDelegateTransformer.onOperationSuccessful(IOperation operation)
reads the result from the operation (takes "expression" and
"filterExpression" into account) and calls the
DatasourceAwareDelegateTransformer.attachElements(AbstractListDatasource) method |
abstract void |
AbstractOperationDelegate.onOperationSuccessful(IOperation operation)
Is called when the operation executed successfully (i.e.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractSynchronizableOperation
The
AbstractSynchronizableOperation implements all necessary
members from it's super class IOperation and provides the possibility
to notify all registered listeners in a thread-safe manner. |
class |
AbstractThreadedOperation
The
AbstractThreadedOperation is an asynchronous executed
operation. |
class |
FileLoadOperation
This class loads a resource from the file system into a String.
|
Modifier and Type | Method and Description |
---|---|
IOperationCacheHandler |
OperationHandler.getCacheHandler(IOperation operation) |
void |
OperationHandler.onOperationFinished(IOperation operation)
Notifies that the passed
IOperation is finished. |
void |
OperationHandler.onOperationStarted(IOperation operation)
Notifies that the passed
IOperation has been started. |
void |
FileOperationDelegate.onOperationSuccessful(IOperation operation) |
Modifier and Type | Method and Description |
---|---|
void |
ServerFirstCacheHandler.afterOperationExecution(IOperation operation) |
void |
NoCacheHandler.afterOperationExecution(IOperation operation) |
void |
IOperationCacheHandler.afterOperationExecution(IOperation operation)
Is invoked after the operation itself is started with
IOperation#internalExecute() . |
void |
CacheFirstCacheHandler.afterOperationExecution(IOperation operation) |
void |
AbstractRestCacheHandler.afterOperationExecution(IOperation operation) |
void |
ServerFirstCacheHandler.beforeOperationExecution(IOperation operation) |
void |
NoCacheHandler.beforeOperationExecution(IOperation operation) |
void |
IOperationCacheHandler.beforeOperationExecution(IOperation operation)
Is invoked before the operation itself is started with
IOperation#internalExecute() . |
void |
CacheOnlyCacheHandler.beforeOperationExecution(IOperation operation) |
void |
CacheFirstCacheHandler.beforeOperationExecution(IOperation operation) |
void |
AbstractOfflineAwareCacheHandler.beforeOperationExecution(IOperation operation) |
void |
ServerFirstCacheHandler.onOperationFailed(IOperation operation) |
void |
CacheFirstCacheHandler.onOperationFinished(IOperation operation) |
void |
AbstractRestCacheHandler.onOperationFinished(IOperation operation) |
void |
AbstractOfflineAwareCacheHandler.onOperationFinished(IOperation operation) |
void |
ServerOnlyCacheHandler.onOperationSuccessful(IOperation operation) |
void |
ServerFirstCacheHandler.onOperationSuccessful(IOperation operation) |
void |
NoCacheHandler.onOperationSuccessful(IOperation operation) |
boolean |
ServerOnlyCacheHandler.skipOperationExecution(IOperation operation) |
boolean |
ServerFirstCacheHandler.skipOperationExecution(IOperation operation) |
boolean |
NoCacheHandler.skipOperationExecution(IOperation operation) |
boolean |
IOperationCacheHandler.skipOperationExecution(IOperation operation) |
boolean |
CacheOnlyCacheHandler.skipOperationExecution(IOperation operation) |
boolean |
CacheFirstCacheHandler.skipOperationExecution(IOperation operation) |
boolean |
AbstractOfflineAwareCacheHandler.skipOperationExecution(IOperation operation) |
Modifier and Type | Method and Description |
---|---|
void |
IOperationQueue.addOperation(IOperation o)
add the given
IOperation to the queue |
void |
BasicOperationQueue.addOperation(IOperation o) |
void |
IOperationQueueDelegate.onQueueFailed(IOperation operation)
Notifies this listener that the one
IOperation in the queue failed. |
void |
IOperationQueueDelegate.onQueueFinished(IOperation lastOperation)
Notifies this listener that the queue finished, i.e.
|
Modifier and Type | Method and Description |
---|---|
void |
ConditionalOperation.addOperation(Condition condition,
IOperation operation)
Add a operation that will be executed if the given condition is true.
|
void |
ConditionalOperationQueue.onOperationFailed(IOperation operation) |
void |
ConditionalOperationQueue.onOperationFinished(IOperation operation) |
Constructor and Description |
---|
ConditionalOperation(IOperation baseOperation) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractMultipartRestOperation
The
AbstractMultipartRestOperation is an extension of
AbstractRestOperation that adds support for HTTP multipart POST or
PUT requests. |
class |
AbstractRestOperation
The
AbstractRestOperation is an thread save, derivable
abstraction for remote communication using Representational state transfer
(REST). |
class |
AbstractVirtualOperation |