Interface RunTaskCallback


public interface RunTaskCallback
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    execute(Task task, Process process, Map outputs)
    Called when Process.runTask() has finished executing the specified task.
  • Method Details

    • execute

      void execute(Task task, Process process, Map outputs)
      Called when Process.runTask() has finished executing the specified task.
      Parameters:
      task - The task instance that was executed.
      process - The owning process instance.
      outputs - Task outputs, if any (for CoTTask, this is the final $outputs JSON). May be null if the task does not produce outputs.