Interface RegionFunctionContext<T>

    • Method Detail

      • getFilter

        java.util.Set<?> getFilter()
        Returns subset of keys (filter) provided by the invoking thread (aka routing objects). The set of filter keys are locally present in the datastore on the executing cluster member.
        Returns:
        the objects that caused the function to be routed to this cluster member
        Since:
        GemFire 6.0
        See Also:
        Execution.withFilter(Set)
      • getDataSet

        <K,​V> Region<K,​V> getDataSet()
        Returns the reference to the Region on which the function is executed
        Type Parameters:
        K - the key type for the Region
        V - the value type for the Region
        Returns:
        returns the Region on which the function is executed
        Since:
        GemFire 6.0
        See Also:
        FunctionService.onRegion(Region)