Enqueue task
This is the way to create an enqueue-able task.
This will add all task instances to a list and each task will be run in order. You can also provide
a max
that will dictate the number of task instances that will run at the same time.
To specify a task as enqueue-able, you can either use the dot notation or the options notation.
<script lang="ts"> import { task } from '@sheepdog/svelte';
const enqueued = task.enqueue(async () => { // your code });</script>
<script lang="ts"> import { task } from '@sheepdog/svelte';
const enqueued = task( async () => { // your code }, { kind: 'enqueue' }, );</script>
Max concurrency
Section titled “Max concurrency”This is how you can specify the maximum number of concurrent instances. The default is 1, here we’re setting it to 5.
<script lang="ts"> import { task } from '@sheepdog/svelte';
const enqueued = task.enqueue( async () => { // your code }, { max: 5 }, );</script>
<script lang="ts"> import { task } from '@sheepdog/svelte';
const enqueued = task( async () => { // your code }, { kind: 'enqueue', max: 5 }, );</script>
The task class
Section titled “The task class”The return value of the task function will be a svelte stateful class where you can access state
from all the instances running and eventually cancel them with cancelAll
.
Passing props
Section titled “Passing props”While defining a task, if the function that you pass in has some arguments, those will be required
by the perform
function (and it will be strongly typed too).
<script lang="ts"> import { task } from '@sheepdog/svelte';
const enqueued = task.enqueue(async (id: string) => { // your code });</script>
<button onclick={() => { enqueued.perform('42'); }}>perform</button>
<script lang="ts"> import { task } from '@sheepdog/svelte';
const enqueued = task( async (id: string) => { // your code }, { kind: 'enqueue' }, );</script>
<button onclick={() => { enqueued.perform('42'); }}>perform</button>
Getting the return value
Section titled “Getting the return value”If you return something from your task you can access the return value by awaiting the perform
function.
<script lang="ts"> import { task } from '@sheepdog/svelte';
const enqueued = task.enqueue(async () => { return 42; });</script>
<button onclick={() => { const number = await enqueued.perform(); console.log(number); // 42 }}>perform</button>
<script lang="ts"> import { task } from '@sheepdog/svelte';
const enqueued = task( async () => { return 42; }, { kind: 'enqueue' }, );</script>
<button onclick={() => { const number = await enqueued.perform(); console.log(number); // 42 }}>perform</button>
Getting the TaskInstance
Section titled “Getting the TaskInstance”If you don’t await the perform
function, then you’ll get back the
task instance that you can use either to cancel it or to get its current
state. The TaskInstance
is also a svelte stateful class and you can access the current value.
<script lang="ts"> import { task } from '@sheepdog/svelte';
const enqueued = task.enqueue(async () => { // your code });</script>
<button onclick={() => { const lastRun = enqueued.perform(); console.log(lastRun); // { isRunning: true, hasStarted: true, ... } lastRun.cancel(); }}>perform</button>
<script lang="ts"> import { task } from '@sheepdog/svelte';
const enqueued = task( async () => { // your code }, { kind: 'enqueue' }, );</script>
<button onclick={() => { lastRun = enqueued.perform(); console.log(lastRun); // { isRunning: true, hasStarted: true, ... } lastRun.cancel(); }}>perform</button>