Interface ReactiveInsertOperation.InsertWithTable<T>
- All Superinterfaces:
ReactiveInsertOperation.InsertWithOptions<T>, ReactiveInsertOperation.TerminatingInsert<T>
- All Known Subinterfaces:
ReactiveInsertOperation.ReactiveInsert<T>
- Enclosing interface:
ReactiveInsertOperation
public static interface ReactiveInsertOperation.InsertWithTable<T>
extends ReactiveInsertOperation.InsertWithOptions<T>
Table override (optional).
- Since:
- 2.1
- Author:
- Mark Paluch, John Blum
-
Method Summary
Methods inherited from interface ReactiveInsertOperation.InsertWithOptions
withOptionsMethods inherited from interface ReactiveInsertOperation.TerminatingInsert
one
-
Method Details
-
inTable
Explicitly set thenameof the table.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
ReactiveInsertOperation.InsertWithOptions. - Throws:
IllegalArgumentException- iftableis null or empty.- See Also:
-
inTable
@Contract("_ -> new") ReactiveInsertOperation.InsertWithOptions<T> inTable(com.datastax.oss.driver.api.core.CqlIdentifier table) Explicitly set thenameof the table.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
ReactiveInsertOperation.InsertWithOptions. - Throws:
IllegalArgumentException- iftableis null.- See Also:
-