Package com.microsoft.durabletask
Interface TaskOrchestrationFactory
-
public interface TaskOrchestrationFactoryFactory interface for producingTaskOrchestrationimplementations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TaskOrchestrationcreate()Creates a new instance ofTaskOrchestrationjava.lang.StringgetName()Gets the name of the orchestration this factory creates.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Gets the name of the orchestration this factory creates.- Returns:
- the name of the orchestration
-
create
TaskOrchestration create()
Creates a new instance ofTaskOrchestration- Returns:
- the created orchestration instance
-
-