Lines Matching defs:runner

544          * Callback method that is called when the runner completes a run. This method is called
547 public void onGraphRunnerStopped(GraphRunner runner);
550 * Callback method that is called when runner encounters an error.
564 public void onSubGraphRunEnded(GraphRunner runner);
574 /** The runner's thread priority. */
616 * instances to this runner before you can execute any of these graphs.
618 * @param context The MffContext instance for this runner.
627 * instances to this runner before you can execute any of these graphs.
629 * @param context The MffContext instance for this runner.
630 * @param config A Config instance with the configuration of this runner.
638 * Returns the currently running graph-runner.
639 * @return The currently running graph-runner.
646 * Returns the graph that this runner is currently executing. Returns null if no graph is
647 * currently being executed by this runner.
656 * Returns the context that this runner is bound to.
658 * @return the MffContext instance that this runner is bound to.
670 throw new IllegalArgumentException("Graph must be attached to runner!");
678 * Begin executing a sub-graph. This only succeeds if the current runner is already
683 throw new RuntimeException("enterSubGraph must be called from the runner's thread!");
774 * Set whether or not the runner is verbose. When set to true, the runner will output individual
864 * Returns the FrameManager that manages the runner's frames.
866 * @return the FrameManager instance that manages the runner's frames.
875 * You must make sure that before calling this, no more graphs are attached to this runner.
878 * @throws IllegalStateException if there are still graphs attached to this runner.
883 throw new IllegalStateException("Attempting to tear down runner with "
892 Log.e("GraphRunner", "Error waiting for runner thread to finish!");
897 * Release all frames managed by this runner.
899 * Note, that you must make sure no graphs are attached to this runner before calling this
905 * @throws IllegalStateException if there are still graphs attached to this runner.
937 /** Resumes a previously halted runner, and restores it to its non-halted state. */
945 * The graph must be attached to this runner.
1001 // Called within the runner's thread