Package oracle.kv
Interface Operation
public interface Operation
Denotes an Operation in a sequence of operations passed to the
KVStore.execute method.
Operation instances are created only by OperationFactory methods
and the Operation interface should not be implemented by the
application.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic enumThe type of operation, as determined by the method used to create it. -
Method Summary
Modifier and TypeMethodDescriptionbooleanReturns whether this operation should cause theKVStore.executetransaction to abort when the operation fails.getKey()Returns the Key associated with the operation.getType()Returns the operation Type.
-
Method Details
-
getKey
Key getKey()Returns the Key associated with the operation. -
getType
Operation.Type getType()Returns the operation Type. -
getAbortIfUnsuccessful
boolean getAbortIfUnsuccessful()Returns whether this operation should cause theKVStore.executetransaction to abort when the operation fails.
-