I have the tasks in the below flow User Task 1 → Service Task (Custom Logic for executing 30 seconds) → User Task 2
Spring Boot RestController is responsible to complete User Task 1 & same API should return the User Task 2 ID in the response of the First API call. without delaying the 30 seconds execution of the service task, How can we achieve this ?
Hi @vinothkumar
If User Task 2 is not dependent on the completion of the service task, you can utilize a fire-and-forget approach by placing the service task in a separate process and triggering it using an intermediate throw message.
Hi @hassang ,
I am using below URL to trigger my workflow as I am using the start message event, But I dont see these variables are available for my processes (User Task + Service Task). Is am I missing something ? Please help here.