ru.tinkoff.kora.database.r2dbc.R2dbcRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of database-r2dbc Show documentation
Show all versions of database-r2dbc Show documentation
Kora database-r2dbc module
package ru.tinkoff.kora.database.r2dbc;
import ru.tinkoff.kora.database.common.annotation.Repository;
/**
* Русский: Интерфейс для наследования который указывает что наследник является именно реализацией R2dbc репозитория.
*
* English: An interface for inheritance that specifies that the inheritor is exactly the R2dbc implementation of the repository.
*
*
* Пример / Example:
*
* {@code
* @Repository
* public interface MyRepository extends R2dbcRepository {
*
* }
* }
*
*
* @see Repository
*/
public interface R2dbcRepository {
R2dbcConnectionFactory getR2dbcConnectionFactory();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy