Interface GemfireCallback<T>

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface GemfireCallback<T>
Callback interface for GemFire code. Implementations of this interface are to be used with GemfireTemplate's execution methods, often as anonymous classes within a method implementation. A typical implementation will call Region.get/put/query to perform some operations on stored objects.
Author:
Costin Leau, John Blum
See Also: