Example usage for org.springframework.data.repository.reactive RxJava2CrudRepository interface-usage

List of usage examples for org.springframework.data.repository.reactive RxJava2CrudRepository interface-usage

Introduction

In this page you can find the example usage for org.springframework.data.repository.reactive RxJava2CrudRepository interface-usage.

Usage

From source file example.springdata.cassandra.people.RxJava2PersonRepository.java

/**
 * Repository interface to manage {@link Person} instances.
 *
 * @author Mark Paluch
 */
public interface RxJava2PersonRepository extends RxJava2CrudRepository<Person, String> {

From source file example.springdata.mongodb.people.RxJava2PersonRepository.java

/**
 * Repository interface to manage {@link Person} instances.
 *
 * @author Mark Paluch
 * @author Christoph Strobl
 */