Give args to oneEntity() and allEntities() relevant names.

Closed #1493.
This commit is contained in:
Michael Reiche
2022-07-13 14:03:43 -07:00
parent 8285b2f62a
commit 4a3703c976

View File

@@ -84,10 +84,10 @@ public interface ReactiveRemoveByIdOperation {
/**
* Remove the documents in the collection. Requires whole entity for transaction to have the cas.
*
* @param ids the document IDs.
* @param entities the entities to remove.
* @return result of the removes.
*/
Flux<RemoveResult> allEntities(Collection<Object> ids);
Flux<RemoveResult> allEntities(Collection<Object> entities);
}