Interface CacheLoaderSupport<K,V>

All Superinterfaces:
org.apache.geode.cache.CacheCallback, org.apache.geode.cache.CacheLoader<K,V>, org.apache.geode.cache.Declarable
All Known Implementing Classes:
RepositoryCacheLoader, RepositoryCacheLoaderWriterSupport, RepositoryCacheWriter
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 CacheLoaderSupport<K,V> extends org.apache.geode.cache.CacheLoader<K,V>
The CacheLoaderSupport interface is an extension of CacheLoader and a FunctionalInterface useful in Lambda expressions.
Since:
1.0.0
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    default void
    Closes any resources opened and used by this CacheLoader.

    Methods inherited from interface org.apache.geode.cache.CacheLoader

    load

    Methods inherited from interface org.apache.geode.cache.Declarable

    init, initialize
  • Method Details

    • close

      default void close()
      Closes any resources opened and used by this CacheLoader.
      Specified by:
      close in interface org.apache.geode.cache.CacheCallback
      See Also:
      • CacheCallback.close()