Class RemoveAllOperationContext

java.lang.Object
org.apache.geode.cache.operations.OperationContext
org.apache.geode.cache.operations.RemoveAllOperationContext

@Deprecated public class RemoveAllOperationContext extends OperationContext
Deprecated.
since Geode1.0, use ResourcePermission instead
Encapsulates a OperationContext.OperationCode.REMOVEALL operation for both the pre-operation and post-operation cases.
Since:
GemFire 8.1
  • Constructor Details

    • RemoveAllOperationContext

      public RemoveAllOperationContext(Collection<?> keys)
      Deprecated.
      Constructor for the operation.
      Parameters:
      keys - the keys to remove
  • Method Details

    • getOperationCode

      public OperationContext.OperationCode getOperationCode()
      Deprecated.
      Return the operation associated with the OperationContext object.
      Specified by:
      getOperationCode in class OperationContext
      Returns:
      OperationCode.RemoveAll.
    • isPostOperation

      public boolean isPostOperation()
      Deprecated.
      True if the context is for post-operation.
      Specified by:
      isPostOperation in class OperationContext
      Returns:
      whether the context is for post-operation
    • setPostOperation

      protected void setPostOperation()
      Deprecated.
      Set the post-operation flag to true.
    • getKeys

      public Collection<?> getKeys()
      Deprecated.
      Returns the keys for this removeAll in an unmodifiable collection.
      Returns:
      the keys for this removeAll in an unmodifiable collection
    • getCallbackArg

      public Object getCallbackArg()
      Deprecated.
      Get the callback argument object for this operation.
      Returns:
      the callback argument object for this operation.
    • setCallbackArg

      public void setCallbackArg(Object callbackArg)
      Deprecated.
      Set the callback argument object for this operation.
      Parameters:
      callbackArg - the callback argument object for this operation.