Module spring.data.cassandra
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).
-
Method Summary
Methods inherited from interface org.springframework.data.cassandra.core.ReactiveInsertOperation.InsertWithOptions
withOptionsMethods inherited from interface org.springframework.data.cassandra.core.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
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:
-
CqlIdentifierReactiveInsertOperation.InsertWithOptions
-