Package org.linuxforhealth.fhir.task.api
Interface ITaskGroup
-
- All Known Implementing Classes:
TaskGroup
public interface ITaskGroup
Manage access to the tasks
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addParent(ITaskGroup parent)
Add the given parent as one of the parents of this task groupjava.lang.String
getTaskId()
void
taskCompletionCallback(ITaskGroup taskGroup)
Called when a child task completes.
-
-
-
Method Detail
-
getTaskId
java.lang.String getTaskId()
-
addParent
void addParent(ITaskGroup parent)
Add the given parent as one of the parents of this task group- Parameters:
parent
-
-
taskCompletionCallback
void taskCompletionCallback(ITaskGroup taskGroup)
Called when a child task completes.- Parameters:
taskGroup
-
-
-