public static interface GraphRunner.OnRunnerDoneListener
Modifier and Type | Method and Description |
---|---|
void |
onRunnerDone(int result)
Callback method to be called when the runner completes a
GraphRunner.run() call. |
void onRunnerDone(int result)
GraphRunner.run()
call.result
- will be RESULT_FINISHED if the graph finished running
on its own, RESULT_STOPPED if the runner was stopped by a call
to stop(), RESULT_BLOCKED if no filters could run due to lack
of inputs or outputs or due to scheduling policies, and
RESULT_SLEEPING if a filter node requested sleep.