Example usage for org.springframework.data.gemfire.function.execution AbstractFunctionExecution execute

List of usage examples for org.springframework.data.gemfire.function.execution AbstractFunctionExecution execute

Introduction

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

Prototype

<T> Iterable<T> execute() 

Source Link

Usage

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

protected <T> Iterable<T> execute(AbstractFunctionExecution execution) {
    execution.setTimeout(timeout).setResultCollector(resultCollector);
    return execution.execute();
}