Package oracle.kv
Interface Operation
- 
public interface OperationDenotes an Operation in a sequence of operations passed to theKVStore.executemethod.Operation instances are created only by
OperationFactorymethods and the Operation interface should not be implemented by the application.- See Also:
 OperationFactory,KVStore.execute
 
- 
- 
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classOperation.TypeThe type of operation, as determined by the method used to create it. 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetAbortIfUnsuccessful()Returns whether this operation should cause theKVStore.executetransaction to abort when the operation fails.KeygetKey()Returns the Key associated with the operation.Operation.TypegetType()Returns the operation Type. 
 - 
 
- 
- 
Method Detail
- 
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. 
 - 
 
 -