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
|`tasks.trigger()`| Anywhere | Triggers a task and gets a handle you can use to fetch and manage the run. [Read more](#tasks-trigger)|
11
11
|`tasks.batchTrigger()`| Anywhere | Triggers a task multiple times and gets a handle you can use to fetch and manage the runs. [Read more](#tasks-batchtrigger)|
12
12
|`tasks.triggerAndPoll()`| Anywhere | Triggers a task and then polls the run until it’s complete. [Read more](#tasks-triggerandpoll)|
|`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. [Read more](#task-trigger)|
19
-
|`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. [Read more](#task-batchtrigger)|
20
-
|`yourTask.triggerAndWait()`| Inside task | Triggers a task and then waits until it's complete. You get the result data to continue with. [Read more](#task-triggerandwait)|
21
-
|`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. [Read more](#task-batchtriggerandwait)|
|`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. [Read more](#yourtask-trigger)|
19
+
|`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. [Read more](#yourtask-batchtrigger)|
20
+
|`yourTask.triggerAndWait()`| Inside task | Triggers a task and then waits until it's complete. You get the result data to continue with. [Read more](#yourtask-triggerandwait)|
21
+
|`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. [Read more](#yourtask-batchtriggerandwait)|
22
22
23
23
Additionally, [scheduled tasks](/tasks-scheduled) get **automatically** triggered on their schedule and webhooks when receiving a webhook.
0 commit comments