Package io.dapr.workflows.runtime
Class WorkflowRuntime
- java.lang.Object
-
- io.dapr.workflows.runtime.WorkflowRuntime
-
- All Implemented Interfaces:
AutoCloseable
public class WorkflowRuntime extends Object implements AutoCloseable
Contains methods to register workflows and activities.
-
-
Constructor Summary
Constructors Constructor Description WorkflowRuntime(com.microsoft.durabletask.DurableTaskGrpcWorker worker)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
void
start()
Start the Workflow runtime processing items and block.void
start(boolean block)
Start the Workflow runtime processing items.
-
-
-
Method Detail
-
start
public void start()
Start the Workflow runtime processing items and block.
-
start
public void start(boolean block)
Start the Workflow runtime processing items.- Parameters:
block
- block the thread if true
-
close
public void close()
- Specified by:
close
in interfaceAutoCloseable
-
-