Function concore::v1::add_dependency

Function Documentation

void concore::v1::add_dependency(chained_task prev, chained_task next)

Add a dependency between two tasks.

This creates a dependency between the given tasks. It means that

next will only be executed only after prev is completed.
Parameters
  • prev: The task dependent on

  • next: The task that depends on prev

See

chained_task, add_dependencies()