| is_task_completed/1 | Determine if a task is completed. |
| is_task_completed/2 | Determine if a task is completed. |
| start_link/0 | Same as start_link([]). |
| start_link/1 | Start and link to calling process. |
| task_completed/2 | Mark a task as completed. |
| task_progress/1 | Determine if a task is completed. |
is_task_completed(Task::atom()) -> ok
Determine if a task is completed.
is_task_completed(Task::atom(), NodeCount::non_neg_integer()) -> ok
Determine if a task is completed.
start_link() -> {ok, pid()} | ignore | {error, term()}
Same as start_link([]).
start_link(Opts::list()) -> {ok, pid()} | ignore | {error, term()}
Start and link to calling process.
task_completed(Task::atom(), Node::atom()) -> ok
Mark a task as completed.
task_progress(Task::atom()) -> ok
Determine if a task is completed.
Generated by EDoc