You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/org/springframework/data/repository/reactive/RxJava3CrudRepository.java
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,12 @@
26
26
/**
27
27
* Interface for generic CRUD operations on a repository for a specific type. This repository follows reactive paradigms
28
28
* and uses RxJava 3 types.
29
+
* <p>
30
+
* Save and delete operations with entities that have a version attribute trigger an {@code onError} with a {@link org.springframework.dao.OptimisticLockingFailureException} when they encounter a different version value in the persistence store than in the entity passed as an argument.
31
+
* </p>
32
+
* <p>
33
+
* Other delete operations that only receive ids or entities without version attribute do not trigger an error when no matching data is found in the persistence store.
* Interface for generic CRUD operations using Kotlin Coroutines on a repository for a specific type.
25
+
* <p>
26
+
* Save and delete operations with entities that have a version attribute throw a {@link org.springframework.dao.OptimisticLockingFailureException} when they encounter a different version value in the persistence store than in the entity passed as an argument.
27
+
* </p>
28
+
* <p>
29
+
* Other delete operations that only receive ids or entities without version attribute do not trigger an error when no matching data is found in the persistence store.
0 commit comments