-
public interface OperationsContextA placeholder for the result of run invocations.
For example, this may be a completed operation, or perhaps it's the ID of a running operation - this would depend on the underlying operation that was invoked via the OperationsRunner implementation.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description interfaceOperationsContext.OperationsContextValueMarker interface for contextValue return value.
-
Method Summary
Modifier and Type Method Description abstract StringcontextKey()They operation context key. abstract OperationsContext.OperationsContextValuecontextValue()The value of the operations context. -
-
Method Detail
-
contextKey
@Nonnull() abstract String contextKey()
They operation context key. This may be used to identify the operations context value at a later point in time.
-
contextValue
@Nonnull() abstract OperationsContext.OperationsContextValue contextValue()
The value of the operations context. May be an ID if the system is tracking the operations execution asynchronously, or it may be the result value of the operation.
-
-
-
-