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 SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic enumThe type of operation, as determined by the method used to create it.
- 
Method SummaryModifier 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- 
getKeyKey getKey()Returns the Key associated with the operation.
- 
getTypeOperation.Type getType()Returns the operation Type.
- 
getAbortIfUnsuccessfulboolean getAbortIfUnsuccessful()Returns whether this operation should cause theKVStore.executetransaction to abort when the operation fails.
 
-