Interface GemfireRepository<T,ID>

All Superinterfaces:
org.springframework.data.repository.CrudRepository<T,ID>, org.springframework.data.repository.PagingAndSortingRepository<T,ID>, org.springframework.data.repository.Repository<T,ID>
All Known Implementing Classes:
SimpleGemfireRepository

public interface GemfireRepository<T,ID> extends org.springframework.data.repository.CrudRepository<T,ID>, org.springframework.data.repository.PagingAndSortingRepository<T,ID>
Apache Geode extension of the Spring Data PagingAndSortingRepository interface.
See Also:
  • PagingAndSortingRepository
  • Method Summary

    Modifier and Type
    Method
    Description
    save(Wrapper<T,ID> wrapper)
    Save the entity wrapped by the given Wrapper.

    Methods inherited from interface org.springframework.data.repository.CrudRepository

    count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findAll, findAllById, findById, save, saveAll

    Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository

    findAll, findAll
  • 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: