You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`yourTask.trigger()`| Anywhere | Triggers a task and gets a handle you can use to monitor and manage the run. It does not wait for the result. |
11
11
|`yourTask.batchTrigger()`| Anywhere | Triggers a task multiple times and gets a handle you can use to monitor and manage the runs. It does not wait for the results. |
12
-
|`yourTask.triggerAndWait()`| Inside a task | Triggers a task and then waits until it's complete. You get the result data to continue with. |
13
-
|`yourTask.batchTriggerAndWait()`| Inside a task | Triggers a task multiple times in parallel and then waits until they're all complete. You get the resulting data to continue with. |
14
-
|`tasks.trigger()`| Outside of a task | Triggers a task and gets a handle you can use to fetch and manage the run. |
15
-
|`tasks.batchTrigger()`| Outside of a task | Triggers a task multiple times and gets a handle you can use to fetch and manage the runs. |
12
+
|`yourTask.triggerAndWait()`| Inside task | Triggers a task and then waits until it's complete. You get the result data to continue with. |
13
+
|`yourTask.batchTriggerAndWait()`| Inside task | Triggers a task multiple times in parallel and then waits until they're all complete. You get the resulting data to continue with. |
14
+
|`tasks.trigger()`| Anywhere | Triggers a task and gets a handle you can use to fetch and manage the run. |
15
+
|`tasks.batchTrigger()`| Anywhere | Triggers a task multiple times and gets a handle you can use to fetch and manage the runs. |
16
+
|`tasks.triggerAndWait()`| Inside task | Triggers a task and then waits until it's complete. You get the result data to continue with |
17
+
|`tasks.batchTriggerAndWait()`| Inside task | Triggers a task multiple times in parallel and then waits until they're all complete. You get the resulting data to continue with. |
16
18
17
19
Additionally, [scheduled tasks](/v3/tasks-scheduled) get automatically triggered on their schedule and [webhooks](/v3/tasks-webhooks) when receiving a webhook.
0 commit comments