public interface FlowRunner
| Modifier and Type | Method and Description |
|---|---|
void |
awaitCompletion()
Blocks until the job is complete.
|
void |
awaitCompletion(long timeout,
java.util.concurrent.TimeUnit unit)
Blocks until the job is complete.
|
FlowRunner |
onFinished(FlowFinishedListener listener)
Sets the finished listener for when the item has processed (similar to a finally)
|
FlowRunner |
onItemComplete(FlowItemCompleteListener listener)
Sets a listener on each item completing
|
FlowRunner |
onItemFailed(FlowItemFailureListener listener)
Sets the failure listener for each item in the flow
|
FlowRunner |
onStatusChanged(FlowStatusListener listener)
Sets the status change listener on the flowrunner object
|
com.marklogic.client.datamovement.JobTicket |
run()
Runs the flow and creates the job
|
FlowRunner |
withBatchSize(int batchSize)
Sets the batch size for the flow runner
|
FlowRunner |
withDestinationDatabase(java.lang.String destinationDatabase)
Sets the database where flow output data will be presisted to
|
FlowRunner |
withFlow(Flow flow)
Sets the flow to be used with the flow runner
|
FlowRunner |
withOptions(java.util.Map<java.lang.String,java.lang.Object> options)
Sets the options to be passed into the xqy or sjs flow in the $options or options variables of main.
|
FlowRunner |
withSourceClient(com.marklogic.client.DatabaseClient sourceClient)
Sets the source client on the flow runner.
|
FlowRunner |
withStopOnFailure(boolean stopOnFailure)
Sets if this will stop the job on a failure, or if it will continue on
|
FlowRunner |
withThreadCount(int threadCount)
Sets the thread count for the flowrunner
|
FlowRunner withFlow(Flow flow)
flow - the flow object to be usedFlowRunner withBatchSize(int batchSize)
batchSize - - the size of the batch in integer formFlowRunner withThreadCount(int threadCount)
threadCount - - the number of threads for the flow runner to useFlowRunner withSourceClient(com.marklogic.client.DatabaseClient sourceClient)
sourceClient - - the client that will be usedFlowRunner withDestinationDatabase(java.lang.String destinationDatabase)
destinationDatabase - - the name of the databaseFlowRunner withOptions(java.util.Map<java.lang.String,java.lang.Object> options)
options - - the object map of options as string/object pairFlowRunner withStopOnFailure(boolean stopOnFailure)
stopOnFailure - FlowRunner onItemComplete(FlowItemCompleteListener listener)
listener - the listen object to setFlowRunner onItemFailed(FlowItemFailureListener listener)
listener - the listener for the failures in the flowFlowRunner onStatusChanged(FlowStatusListener listener)
listener - - the listener for when the status changesFlowRunner onFinished(FlowFinishedListener listener)
listener - - the listener for the flow item when it finishesvoid awaitCompletion()
void awaitCompletion(long timeout,
java.util.concurrent.TimeUnit unit)
throws java.lang.InterruptedException
timeout - the maximum time to waitunit - the time unit of the timeout argumentjava.lang.InterruptedException - if interrupted while waitingcom.marklogic.client.datamovement.JobTicket run()