@@ -168,7 +168,7 @@ Defined in: [async-queuer.ts:316](https://github.com/TanStack/pacer/blob/main/pa
168168abort (): void ;
169169```
170170
171- Defined in: [ async-queuer.ts:833 ] ( https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L833 )
171+ Defined in: [ async-queuer.ts:832 ] ( https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L832 )
172172
173173Aborts all ongoing executions with the internal abort controllers.
174174Does NOT clear out the items.
@@ -188,7 +188,7 @@ addItem(
188188 runOnItemsChange ): boolean ;
189189```
190190
191- Defined in: [ async-queuer.ts:471 ] ( https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L471 )
191+ Defined in: [ async-queuer.ts:470 ] ( https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L470 )
192192
193193Adds an item to the queue. If the queue is full, the item is rejected and onReject is called.
194194Items can be inserted based on priority or at the front/back depending on configuration.
@@ -226,7 +226,7 @@ queuer.addItem('task2', 'front');
226226clear (): void ;
227227```
228228
229- Defined in: [ async-queuer.ts:798 ] ( https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L798 )
229+ Defined in: [ async-queuer.ts:797 ] ( https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L797 )
230230
231231Removes all pending items from the queue.
232232Does NOT affect active tasks.
@@ -243,7 +243,7 @@ Does NOT affect active tasks.
243243execute (position ? ): Promise < any > ;
244244` ` `
245245
246- Defined in: [async-queuer.ts:606 ](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L606 )
246+ Defined in: [async-queuer.ts:605 ](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L605 )
247247
248248Removes and returns the next item from the queue and executes the task function with it.
249249
@@ -273,7 +273,7 @@ queuer.execute('back');
273273flush (numberOfItems , position ? ): Promise < void > ;
274274` ` `
275275
276- Defined in: [async-queuer.ts:654 ](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L654 )
276+ Defined in: [async-queuer.ts:653 ](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L653 )
277277
278278Processes a specified number of items to execute immediately with no wait time
279279If no numberOfItems is provided, all items will be processed
@@ -300,7 +300,7 @@ If no numberOfItems is provided, all items will be processed
300300flushAsBatch (batchFunction ): Promise < void > ;
301301` ` `
302302
303- Defined in: [async-queuer.ts:668 ](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L668 )
303+ Defined in: [async-queuer.ts:667 ](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L667 )
304304
305305Processes all items in the queue as a batch using the provided function as an argument
306306The queue is cleared after processing
@@ -323,7 +323,7 @@ The queue is cleared after processing
323323getAbortSignal (executeCount ? ): AbortSignal | null ;
324324` ` `
325325
326- Defined in: [async-queuer.ts:823 ](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L823 )
326+ Defined in: [async-queuer.ts:822 ](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L822 )
327327
328328Returns the AbortSignal for a specific execution.
329329If no executeCount is provided, returns the signal for the most recent execution.
@@ -364,7 +364,7 @@ const queuer = new AsyncQueuer(
364364getNextItem (position ): TValue | undefined ;
365365` ` `
366366
367- Defined in: [async-queuer.ts:554 ](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L554 )
367+ Defined in: [async-queuer.ts:553 ](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L553 )
368368
369369Removes and returns the next item from the queue without executing the task function.
370370Use for manual queue management. Normally, use execute() to process items.
@@ -396,7 +396,7 @@ queuer.getNextItem('back');
396396peekActiveItems (): TValue [];
397397` ` `
398398
399- Defined in: [async-queuer.ts:760 ](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L760 )
399+ Defined in: [async-queuer.ts:759 ](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L759 )
400400
401401Returns the items currently being processed (active tasks).
402402
@@ -412,7 +412,7 @@ Returns the items currently being processed (active tasks).
412412peekAllItems (): TValue [];
413413` ` `
414414
415- Defined in: [async-queuer.ts:753 ](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L753 )
415+ Defined in: [async-queuer.ts:752 ](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L752 )
416416
417417Returns a copy of all items in the queue, including active and pending items.
418418
@@ -428,7 +428,7 @@ Returns a copy of all items in the queue, including active and pending items.
428428peekNextItem (position ): TValue | undefined ;
429429` ` `
430430
431- Defined in: [async-queuer.ts:743 ](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L743 )
431+ Defined in: [async-queuer.ts:742 ](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L742 )
432432
433433Returns the next item in the queue without removing it.
434434
@@ -457,7 +457,7 @@ queuer.peekNextItem('back'); // back
457457peekPendingItems (): TValue [];
458458` ` `
459459
460- Defined in: [async-queuer.ts:767 ](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L767 )
460+ Defined in: [async-queuer.ts:766 ](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L766 )
461461
462462Returns the items waiting to be processed (pending tasks).
463463
@@ -473,7 +473,7 @@ Returns the items waiting to be processed (pending tasks).
473473reset (): void ;
474474` ` `
475475
476- Defined in: [async-queuer.ts:844 ](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L844 )
476+ Defined in: [async-queuer.ts:843 ](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L843 )
477477
478478Resets the queuer state to its default values
479479
@@ -511,7 +511,7 @@ Updates the queuer options. New options are merged with existing options.
511511start (): void ;
512512` ` `
513513
514- Defined in: [async-queuer.ts:774 ](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L774 )
514+ Defined in: [async-queuer.ts:773 ](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L773 )
515515
516516Starts processing items in the queue. If already running, does nothing.
517517
@@ -527,7 +527,7 @@ Starts processing items in the queue. If already running, does nothing.
527527stop (): void ;
528528` ` `
529529
530- Defined in: [async-queuer.ts:784 ](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L784 )
530+ Defined in: [async-queuer.ts:783 ](https://github.com/TanStack/pacer/blob/main/packages/pacer/src/async-queuer.ts#L783 )
531531
532532Stops processing items in the queue. Does not clear the queue.
533533
0 commit comments