New in 0.16.0

v0.16.1

Service

Delegated Task

Delegated task purpose

In certain situations, completing a task within the Service worker may not be feasible. For instance, when the task is overseen by a system external to Infinitic, and the worker cannot synchronously wait for its conclusion. In such cases, the Service worker delegates the task's completion, yet Infinitic still requires awareness of when the task is finished and the corresponding return value.

Here are some common use cases for delegated tasks:

  1. Long-Running External Processes: When a task involves a long-running process managed by an external system, such as a data migration job or a complex computation on a separate cluster.

    Example:

  2. Asynchronous API Calls: When interacting with external APIs that use webhooks or other asynchronous patterns to notify of task completion.

    Example:

  3. Human-in-the-Loop Processes: For tasks that require human intervention or approval before completion.

    Example:

In each of these cases, the task is initiated but not immediately completed. The actual completion and result setting would be done later using the completeDelegatedTask method of the Infinitic client.

Delegated task implementation

To signify to Infinitic that a task remains incomplete upon the method's return, simply include a @Delegated annotation in your task definition. For instance,

In the example above, the task myFirstTask is delegated. It is the responsibility of the implementation to initiate the task on the external system. It's important to note that the implementation still needs to return an object of the correct type, but you have the option to return null.

Delegated task completion

You can use an Infinitic client to signify to Infinitic that the delegated task is completed:

Where:

  • serviceName: the name of the service. Within the task execution in the Infinitic worker, you can retrieve it through the task's context;
  • taskId: the ID of the task. Within the task execution in the Infinitic worker, you can retrieve it through the task's context;
  • result: The outcome of the delegated task.

It's your responsability to provide a result with the right type defined in the Service interface. Failing to do so will result in an error being triggered when you attempt to utilize this result in your workflow, and your workflow instance will become stuck.

Previous
Batched Task