Skip to main content

Task and Thread Actions

Task actions provide features for running and interacting with asynchronous tasks managed by the XINA Run application or AWS Lambda platform.

Task Actions

RUN


CONCLUDE

Explicitly conclude an asynchronous task.


CANCEL

Cancel one or more asynchronous tasks.

Example

{
  "action" : "cancel",
  "tasks"  : [ <task ID>, ... ]
}

CLEAN

Permanently delete one or more asynchronous task records and any associated files.

Example

{
  "action" : "clean",
  "tasks"  : [ <task ID>, ... ]
}

DESTROY

Cancel and clean one or more asynchronous tasks.


Thread Actions

PAUSE


RESUME