Gemfire JavaDocs_test
Class KeyOperationContext
- java.lang.Object
-
- org.apache.geode.cache.operations.OperationContext
-
- org.apache.geode.cache.operations.KeyOperationContext
-
- Direct Known Subclasses:
DestroyOperationContext
,InvalidateOperationContext
,KeyValueOperationContext
@Deprecated public abstract class KeyOperationContext extends OperationContext
Deprecated.since Geode1.0, useResourcePermission
insteadEncapsulates a region operation that requires only a key object for the pre-operation case. The operations this class encapsulates areOperationContext.OperationCode.DESTROY
andOperationContext.OperationCode.CONTAINS_KEY
.- Since:
- GemFire 5.5
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.geode.cache.operations.OperationContext
OperationContext.OperationCode
-
-
Constructor Summary
Constructors Constructor Description KeyOperationContext(java.lang.Object key)
Deprecated.Constructor for the operation.KeyOperationContext(java.lang.Object key, boolean postOperation)
Deprecated.Constructor for the operation.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.lang.Object
getCallbackArg()
Deprecated.Get the callback argument object for this operation.java.lang.Object
getKey()
Deprecated.Get the key object for this operation.abstract OperationContext.OperationCode
getOperationCode()
Deprecated.Return the operation associated with theOperationContext
object.boolean
isPostOperation()
Deprecated.True if the context is for post-operation.void
setCallbackArg(java.lang.Object callbackArg)
Deprecated.Set the callback argument object for this operation.protected void
setPostOperation()
Deprecated.Set the post-operation flag to true.-
Methods inherited from class org.apache.geode.cache.operations.OperationContext
isClientUpdate, isClientUpdate
-
-
-
-
Constructor Detail
-
KeyOperationContext
public KeyOperationContext(java.lang.Object key)
Deprecated.Constructor for the operation.- Parameters:
key
- the key for this operation
-
KeyOperationContext
public KeyOperationContext(java.lang.Object key, boolean postOperation)
Deprecated.Constructor for the operation.- Parameters:
key
- the key for this operationpostOperation
- true to set the post-operation flag
-
-
Method Detail
-
getOperationCode
public abstract OperationContext.OperationCode getOperationCode()
Deprecated.Return the operation associated with theOperationContext
object.- Specified by:
getOperationCode
in classOperationContext
- Returns:
- The
OperationCode
of this operation. This is one ofOperationContext.OperationCode.DESTROY
orOperationContext.OperationCode.CONTAINS_KEY
forKeyOperationContext
, and one ofOperationContext.OperationCode.GET
orOperationContext.OperationCode.PUT
forKeyValueOperationContext
.
-
isPostOperation
public boolean isPostOperation()
Deprecated.True if the context is for post-operation.- Specified by:
isPostOperation
in classOperationContext
- Returns:
- whether the context is for post-operation
-
setPostOperation
protected void setPostOperation()
Deprecated.Set the post-operation flag to true.
-
getKey
public java.lang.Object getKey()
Deprecated.Get the key object for this operation.- Returns:
- the key object for this operation.
-
getCallbackArg
public java.lang.Object getCallbackArg()
Deprecated.Get the callback argument object for this operation.- Returns:
- the callback argument object for this operation.
-
setCallbackArg
public void setCallbackArg(java.lang.Object callbackArg)
Deprecated.Set the callback argument object for this operation.- Parameters:
callbackArg
- the callback argument object for this operation.
-
-