File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ This means that you control how many operations can be executed concurrently.
104
104
If you add a job to the queue and it still below the limit, it will be executed
105
105
immediately. If you keep adding new jobs to the queue and its concurrency limit
106
106
is reached, it will not start a new operation and instead queue this for future
107
- execution. Once one of the pending operations complete, it will pick the next
107
+ execution. Once one of the pending operations is complete, it will pick the next
108
108
job from the queue and execute this operation.
109
109
110
110
The ` new Queue(int $concurrency, ?int $limit, callable(mixed):PromiseInterface<T> $handler) ` call
Original file line number Diff line number Diff line change 16
16
* If you add a job to the queue and it still below the limit, it will be executed
17
17
* immediately. If you keep adding new jobs to the queue and its concurrency limit
18
18
* is reached, it will not start a new operation and instead queue this for future
19
- * execution. Once one of the pending operations complete, it will pick the next
19
+ * execution. Once one of the pending operations is complete, it will pick the next
20
20
* job from the queue and execute this operation.
21
21
*
22
22
* @template T
You can’t perform that action at this time.
0 commit comments