Skip to content

Commit

Permalink
CI: bumps @fundwave/fetch-queue to 1.1.2-disable-queue.1
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
fundabot committed Jan 9, 2024
1 parent 879b792 commit 363a682
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
12 changes: 8 additions & 4 deletions DOCUMENTATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ It ensures that the number of active requests does not exceed a specified limit,
* [.pauseQueue()](#FetchQueue+pauseQueue) ⇒ <code>void</code>
* [.startQueue()](#FetchQueue+startQueue) ⇒ <code>void</code>
* [.getQueueLength()](#FetchQueue+getQueueLength)
* [.getActiveRequests()](#FetchQueue+getActiveRequests)

<a name="new_FetchQueue_new"></a>

Expand Down Expand Up @@ -70,19 +71,22 @@ If no options are provided, the default concurrent value is set to 3.</p>
<a name="FetchQueue+pauseQueue"></a>

### fetchQueue.pauseQueue() ⇒ <code>void</code>
<p>Disables the queuing of fetch requests in the FetchQueue.
Sets the <code>_disableQueue</code> property to true and the <code>_activeRequests</code> property to 0.</p>
<p>Disables the queuing of fetch requests in the FetchQueue.</p>

**Kind**: instance method of [<code>FetchQueue</code>](#FetchQueue)
<a name="FetchQueue+startQueue"></a>

### fetchQueue.startQueue() ⇒ <code>void</code>
<p>Enables the queuing of fetch requests in the FetchQueue.
Sets the <code>_disableQueue</code> property to false and calls the <code>_emitRequestCompletedEvent</code> method.</p>
<p>Enables the queuing of fetch requests in the FetchQueue.</p>

**Kind**: instance method of [<code>FetchQueue</code>](#FetchQueue)
<a name="FetchQueue+getQueueLength"></a>

### fetchQueue.getQueueLength() ⇒
**Kind**: instance method of [<code>FetchQueue</code>](#FetchQueue)
**Returns**: <p>Length of queue</p>
<a name="FetchQueue+getActiveRequests"></a>

### fetchQueue.getActiveRequests() ⇒
**Kind**: instance method of [<code>FetchQueue</code>](#FetchQueue)
**Returns**: <p>Number of active requests</p>
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fundwave/fetchq",
"version": "1.1.2-disable-queue.0",
"version": "1.1.2-disable-queue.1",
"description": "Queue for fetch requests",
"main": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
Expand Down

0 comments on commit 363a682

Please sign in to comment.