Interface ReactiveFindByAnalyticsOperation.TerminatingFindByAnalytics<T>
- All Superinterfaces:
OneAndAllReactive
- All Known Subinterfaces:
ReactiveFindByAnalyticsOperation.FindByAnalyticsConsistentWith<T>
,ReactiveFindByAnalyticsOperation.FindByAnalyticsInCollection<T>
,ReactiveFindByAnalyticsOperation.FindByAnalyticsInScope<T>
,ReactiveFindByAnalyticsOperation.FindByAnalyticsWithConsistency<T>
,ReactiveFindByAnalyticsOperation.FindByAnalyticsWithOptions<T>
,ReactiveFindByAnalyticsOperation.FindByAnalyticsWithProjection<T>
,ReactiveFindByAnalyticsOperation.FindByAnalyticsWithQuery<T>
,ReactiveFindByAnalyticsOperation.ReactiveFindByAnalytics<T>
- Enclosing interface:
- ReactiveFindByAnalyticsOperation
public static interface ReactiveFindByAnalyticsOperation.TerminatingFindByAnalytics<T>
extends OneAndAllReactive
Terminating operations invoking the actual execution.
-
Method Summary
-
Method Details
-
one
Get exactly zero or one result.- Specified by:
one
in interfaceOneAndAllReactive<T>
- Returns:
- a mono with the match if found (an empty one otherwise).
- Throws:
IncorrectResultSizeDataAccessException
- if more than one match found.
-
first
Get the first or no result.- Specified by:
first
in interfaceOneAndAllReactive<T>
- Returns:
- the first or an empty mono if none found.
-
all
Get all matching elements.- Specified by:
all
in interfaceOneAndAllReactive<T>
- Returns:
- never null.
-
count
Get the number of matching elements.- Specified by:
count
in interfaceOneAndAllReactive<T>
- Returns:
- total number of matching elements.
-
exists
Check for the presence of matching elements.- Specified by:
exists
in interfaceOneAndAllReactive<T>
- Returns:
- true if at least one matching element exists.
-