public interface BatchApiOp extends APIOperation
APIOperation
.
If a resource does not support batch operations in any form and it cannot be coerced into doing so then the
connector will not implement the BatchOp
interface.
Batch will still be supported via the framework but the operations will be executed iteratively through the
connector. With this every connector appears to support batch even if it's not the most efficient
implementation possible.NO_TIMEOUT
Modifier and Type | Method and Description |
---|---|
Subscription |
executeBatch(List<BatchTask> tasks,
Observer<BatchResult> observer,
OperationOptions options)
Execute a series of
BatchTask . |
Subscription |
queryBatch(BatchToken token,
Observer<BatchResult> observer,
OperationOptions options)
Query an ongoing batch execution for new results.
|
Subscription executeBatch(List<BatchTask> tasks, Observer<BatchResult> observer, OperationOptions options)
BatchTask
.tasks
- the list of batch tasks to execute.observer
- an observer/handler for the ongoing results of the batch.options
- options for the operation.Subscription queryBatch(BatchToken token, Observer<BatchResult> observer, OperationOptions options)
token
- a token for a previously started batch, the ongoing results of which should invoke the
observer.observer
- an observer/handler for the ongoing results of the batch.options
- options for the operation.Copyright © 2018–2025. All rights reserved.