Interface GemfireRepository<T,ID>

All Superinterfaces:
CrudRepository<T,ID>, PagingAndSortingRepository<T,ID>, Repository<T,ID>
All Known Implementing Classes:
SimpleGemfireRepository

public interface GemfireRepository<T,ID> extends CrudRepository<T,ID>, PagingAndSortingRepository<T,ID>
Apache Geode extension of the Spring Data PagingAndSortingRepository interface.
Author:
Oliver Gierke, John Blum
See Also:
  • Method Details

    • save

      T save(Wrapper<T,ID> wrapper)
      Save the entity wrapped by the given Wrapper.
      Parameters:
      wrapper - Wrapper object wrapping the entity and the identifier of the entity (i.e. key).
      Returns:
      the saved entity.
      See Also: