public interface ReactorBulkWriter extends ReactiveBulkWriter
| Modifier and Type | Method and Description |
|---|---|
Flux<WriteResult> |
writeReactive(Iterable<? extends Statement<?>> statements)
Executes the given iterable of write statements reactively.
|
Flux<WriteResult> |
writeReactive(Publisher<? extends Statement<?>> statements)
Executes the given Flux of write statements reactively.
|
Mono<WriteResult> |
writeReactive(Statement<?> statement)
Executes the given write statement reactively.
|
Flux<WriteResult> |
writeReactive(Stream<? extends Statement<?>> statements)
Executes the given stream of write statements reactively.
|
default Mono<WriteResult> |
writeReactive(String statement)
Executes the given write statement reactively.
|
closedefault Mono<WriteResult> writeReactive(String statement) throws BulkExecutionException
writeReactive in interface ReactiveBulkWriterstatement - The statement to execute.Flux that will emit one single write result.BulkExecutionException - if the operation cannot complete normally.Mono<WriteResult> writeReactive(Statement<?> statement) throws BulkExecutionException
writeReactive in interface ReactiveBulkWriterstatement - The statement to execute.Flux that will emit one single write result.BulkExecutionException - if the operation cannot complete normally.Flux<WriteResult> writeReactive(Stream<? extends Statement<?>> statements) throws BulkExecutionException
writeReactive in interface ReactiveBulkWriterstatements - The statements to execute.Flux of write results.BulkExecutionException - if the operation cannot complete normally.Flux<WriteResult> writeReactive(Iterable<? extends Statement<?>> statements) throws BulkExecutionException
writeReactive in interface ReactiveBulkWriterstatements - The statements to execute.Flux of write results.BulkExecutionException - if the operation cannot complete normally.Flux<WriteResult> writeReactive(Publisher<? extends Statement<?>> statements) throws BulkExecutionException
writeReactive in interface ReactiveBulkWriterstatements - The statements to execute.Flux of write results.BulkExecutionException - if the operation cannot complete normally.Copyright © 2017–2021 DataStax. All rights reserved.