1.6 KiB
Workflow Management
This tutorial demonstrates the various APIs to manage a workflow instance, these methods include:
- Scheduling a workflow instance
- Getting the workflow instance state
- Suspending the workflow instance
- Resuming the workflow instance
- Terminating the workflow instance
- Purging the workflow instance
For more information on workflow management, see the Dapr docs.
Inspect the code
Open the WorkflowManagementRestController.java file in the tutorials/workflow/java/workflow-management/ folder. This file contains the endpoint definitions that use the workflow management API. The workflow that is being managed is named NeverEndingWorkflow and is a counter that will keep running once it's started.
Run the tutorial
-
Use a terminal to navigate to the
tutorials/workflow/java/workflow-managementfolder. -
Build and run the project using Maven.
mvn spring-boot:test-run -
Use the first POST request in the
workflowmanagement.httpfile to start the workflow. -
Use other requests in the
workflowmanagement.httpfile to perform other actions on the workflow, such as:- Getting the workflow instance state.
- Suspending & resuming the workflow instance.
- Terminating the workflow instance.
- Purging the workflow instance.
-
Stop the application by pressing
Ctrl+C.