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
withOptions
Methods inherited from interface org.springframework.data.cassandra.core.ReactiveInsertOperation.TerminatingInsert
one
-
Method Details
-
inTable
Explicitly set thename
of the table.Skip this step to use the default table derived from the
domain type
.- Parameters:
table
-name
of the table; must not be null or empty.- Returns:
- new instance of
ReactiveInsertOperation.InsertWithOptions
. - Throws:
IllegalArgumentException
- iftable
is null or empty.- See Also:
-
inTable
ReactiveInsertOperation.InsertWithOptions<T> inTable(com.datastax.oss.driver.api.core.CqlIdentifier table) Explicitly set thename
of the table.Skip this step to use the default table derived from the
domain type
.- Parameters:
table
-name
of the table; must not be null.- Returns:
- new instance of
ReactiveInsertOperation.InsertWithOptions
. - Throws:
IllegalArgumentException
- iftable
is null.- See Also:
-
CqlIdentifier
ReactiveInsertOperation.InsertWithOptions
-