aboutsummaryrefslogtreecommitdiff
path: root/lib/Utils
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Utils')
-rw-r--r--lib/Utils/src/Async/AsyncQueue.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Utils/src/Async/AsyncQueue.cs b/lib/Utils/src/Async/AsyncQueue.cs
index e94d08e..ddd2da5 100644
--- a/lib/Utils/src/Async/AsyncQueue.cs
+++ b/lib/Utils/src/Async/AsyncQueue.cs
@@ -60,7 +60,9 @@ namespace VNLib.Utils.Async
/// </summary>
/// <param name="singleWriter">A value that specifies only a single thread be enqueing items?</param>
/// <param name="singleReader">A value that specifies only a single thread will be dequeing</param>
- /// <param name="capacity">The maxium number of items to enque without failing</param>
+ /// <param name="capacity">
+ /// The maxium number of items to enque without failing. If set to <see cref="int.MaxValue"/> maximum is disabled
+ /// </param>
public AsyncQueue(bool singleWriter, bool singleReader, int capacity = int.MaxValue)
{
if(capacity == int.MaxValue)