Class FunctionAdapter

java.lang.Object
org.apache.geode.cache.execute.FunctionAdapter
All Implemented Interfaces:
Serializable, Function, org.apache.geode.lang.Identifiable

@Deprecated public abstract class FunctionAdapter extends Object implements Function
Deprecated.
Use Function instead. Function has default methods that now mimic the behavior of FunctionAdapter.
Application developers can extend this class instead of implementing the Function interface.

This implementation provides the following defaults

  1. Function.hasResult() returns true
  2. Function.optimizeForWrite() returns false
  3. Function.isHA() returns true

Since:
GemFire 6.0
See Also:
  • Constructor Details

    • FunctionAdapter

      public FunctionAdapter()
      Deprecated.