mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 03:57:27 +00:00
Adds missing constructor to take both pacing and capacity arguments
This commit is contained in:
parent
6ef8ba3639
commit
5c23aeca48
1 changed files with 10 additions and 1 deletions
|
|
@ -76,7 +76,16 @@ namespace PepperDash_Essentials_Core.Queues
|
|||
{
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Constructor with pacing and capacity
|
||||
/// </summary>
|
||||
/// <param name="key"></param>
|
||||
/// <param name="pacing"></param>
|
||||
/// <param name="capacity"></param>
|
||||
public GenericQueue(string key, int pacing, int capacity)
|
||||
: this(key, _defaultPriority, capacity, pacing)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Constructor with pacing and priority
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue