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