Interface ReactiveSelectOperation.SelectWithTable<T>
- All Superinterfaces:
ReactiveSelectOperation.SelectWithQuery<T>, ReactiveSelectOperation.TerminatingProjections, ReactiveSelectOperation.TerminatingResults<T>, ReactiveSelectOperation.TerminatingSelect<T>
- All Known Subinterfaces:
ReactiveSelectOperation.ReactiveSelect<T>
- Enclosing interface:
ReactiveSelectOperation
public static interface ReactiveSelectOperation.SelectWithTable<T>
extends ReactiveSelectOperation.SelectWithQuery<T>
Table override (optional).
- Since:
- 2.1
- Author:
- Mark Paluch, John Blum
-
Method Summary
Methods inherited from interface ReactiveSelectOperation.SelectWithQuery
matchingMethods inherited from interface ReactiveSelectOperation.TerminatingProjections
count, existsMethods inherited from interface ReactiveSelectOperation.TerminatingResults
all, first, map, one
-
Method Details
-
inTable
Explicitly set thenameof the table on which to execute the query.Skip this step to use the default table derived from the
domain type.- Parameters:
table-nameof the table; must not be null or empty.- Returns:
- new instance of
ReactiveSelectOperation.SelectWithProjection. - Throws:
IllegalArgumentException- iftableis null or empty.- See Also:
-
inTable
@Contract("_ -> new") ReactiveSelectOperation.SelectWithProjection<T> inTable(com.datastax.oss.driver.api.core.CqlIdentifier table) Explicitly set thenameof the table on which to execute the query.Skip this step to use the default table derived from the
domain type.- Parameters:
table-nameof the table; must not be null.- Returns:
- new instance of
ReactiveSelectOperation.SelectWithProjection. - Throws:
IllegalArgumentException- iftableis null.- See Also:
-