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