Class PostRunTaskCollection
- java.lang.Object
-
- com.azure.resourcemanager.resources.fluentcore.dag.PostRunTaskCollection
-
public final class PostRunTaskCollection extends Object
A collection of "Post Run" tasks.
-
-
Constructor Summary
Constructors Constructor Description PostRunTaskCollection(TaskGroup dependsOnTaskGroup)Creates PostRunTaskCollection.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(FunctionalTaskItem taskItem)Adds a "Post Run" task to the collection.voidadd(IndexableTaskItem taskItem)Adds a "Post Run" task to the collection.voidclear()Clears the result produced by all "Post Run" tasks in the collection.
-
-
-
Constructor Detail
-
PostRunTaskCollection
public PostRunTaskCollection(TaskGroup dependsOnTaskGroup)
Creates PostRunTaskCollection.- Parameters:
dependsOnTaskGroup- the task group in which "Post Run" tasks in the collection depends on
-
-
Method Detail
-
add
public void add(IndexableTaskItem taskItem)
Adds a "Post Run" task to the collection.- Parameters:
taskItem- the "Post Run" task
-
add
public void add(FunctionalTaskItem taskItem)
Adds a "Post Run" task to the collection.- Parameters:
taskItem- the "Post Run" task
-
clear
public void clear()
Clears the result produced by all "Post Run" tasks in the collection.
-
-