Interface ReplayWorkflowActivity
-
- All Known Implementing Classes:
ReplayWorkflowActivityImpl
public interface ReplayWorkflowActivity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <R> void
addWorkflowImplementationFactory(java.lang.Class<R> workflowInterface, Functions.Func<R> factory)
<R> void
addWorkflowImplementationFactoryWithOptions(WorkflowImplementationOptions options, java.lang.Class<R> workflowInterface, Functions.Func<R> factory)
void
registerWorkflowImplementationTypes(java.lang.Class<?>... workflowImplementationClasses)
void
registerWorkflowImplementationTypesWithOptions(WorkflowImplementationOptions options, java.lang.Class<?>... workflowImplementationClasses)
ReplayWorkflowActivityResult
replay(ReplayWorkflowActivityParams params)
ReplayWorkflowActivityResult
replayOneExecution(java.lang.String domain, WorkflowExecution execution)
-
-
-
Method Detail
-
replay
ReplayWorkflowActivityResult replay(ReplayWorkflowActivityParams params) throws java.lang.Exception
- Throws:
java.lang.Exception
-
replayOneExecution
ReplayWorkflowActivityResult replayOneExecution(java.lang.String domain, WorkflowExecution execution)
-
registerWorkflowImplementationTypes
void registerWorkflowImplementationTypes(java.lang.Class<?>... workflowImplementationClasses)
-
registerWorkflowImplementationTypesWithOptions
void registerWorkflowImplementationTypesWithOptions(WorkflowImplementationOptions options, java.lang.Class<?>... workflowImplementationClasses)
-
addWorkflowImplementationFactory
<R> void addWorkflowImplementationFactory(java.lang.Class<R> workflowInterface, Functions.Func<R> factory)
-
addWorkflowImplementationFactoryWithOptions
<R> void addWorkflowImplementationFactoryWithOptions(WorkflowImplementationOptions options, java.lang.Class<R> workflowInterface, Functions.Func<R> factory)
-
-