VMware GemFire Java API Reference
Class ExecuteFunctionOperationContext
- java.lang.Object
-
- org.apache.geode.cache.operations.OperationContext
-
- org.apache.geode.cache.operations.ExecuteFunctionOperationContext
-
@Deprecated public class ExecuteFunctionOperationContext extends OperationContext
Deprecated.since Geode1.0, useResourcePermissioninsteadOperationContext for Function execution operation. This is for the pre-operation case- Since:
- GemFire 6.0
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.geode.cache.operations.OperationContext
OperationContext.OperationCode
-
-
Constructor Summary
Constructors Constructor Description ExecuteFunctionOperationContext(String functionName, String regionName, Set keySet, Object arguments, boolean optimizeForWrite, boolean isPostOperation)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description ObjectgetArguments()Deprecated.StringgetFunctionId()Deprecated.SetgetKeySet()Deprecated.OperationContext.OperationCodegetOperationCode()Deprecated.Return the operation code associated with theOperationContextobject.StringgetRegionName()Deprecated.ObjectgetResult()Deprecated.booleanisOptimizeForWrite()Deprecated.booleanisPostOperation()Deprecated.True if the context is for post-operation.voidsetIsPostOperation(boolean isPostOperation)Deprecated.voidsetResult(Object oneResult)Deprecated.-
Methods inherited from class org.apache.geode.cache.operations.OperationContext
isClientUpdate, isClientUpdate
-
-
-
-
Method Detail
-
getOperationCode
public OperationContext.OperationCode getOperationCode()
Deprecated.Description copied from class:OperationContextReturn the operation code associated with theOperationContextobject.- Specified by:
getOperationCodein classOperationContext- Returns:
- the operation code associated with the
OperationContextobject
-
isPostOperation
public boolean isPostOperation()
Deprecated.Description copied from class:OperationContextTrue if the context is for post-operation. TheOperationContextinterface encapsulates the data both before the operation is performed and after the operation is complete. For example, for a query operation theQueryobject as well as the list of region names referenced by the query would be part of the context object in the pre-processing stage. In the post-processing stage the context object shall contain results of the query.- Specified by:
isPostOperationin classOperationContext- Returns:
- whether the context is for post-operation
-
getFunctionId
public String getFunctionId()
Deprecated.
-
getRegionName
public String getRegionName()
Deprecated.
-
isOptimizeForWrite
public boolean isOptimizeForWrite()
Deprecated.
-
getResult
public Object getResult()
Deprecated.
-
getKeySet
public Set getKeySet()
Deprecated.
-
getArguments
public Object getArguments()
Deprecated.
-
setResult
public void setResult(Object oneResult)
Deprecated.
-
setIsPostOperation
public void setIsPostOperation(boolean isPostOperation)
Deprecated.
-
-