Example usage for org.springframework.data.gemfire.function.execution GemfireFunctionCallback doInGemfire

List of usage examples for org.springframework.data.gemfire.function.execution GemfireFunctionCallback doInGemfire

Introduction

In this page you can find the example usage for org.springframework.data.gemfire.function.execution GemfireFunctionCallback doInGemfire.

Prototype

public T doInGemfire(Execution execution);

Source Link

Usage

From source file:org.springframework.data.gemfire.function.execution.AbstractFunctionTemplate.java

@Override
public <T> T execute(GemfireFunctionCallback<T> callback) {
    Execution execution = getFunctionExecution().getExecution();
    return callback.doInGemfire(execution);
}