We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f543cf commit 9d052acCopy full SHA for 9d052ac
Requests/Channel/IPriorityChannel.cs
@@ -2,6 +2,13 @@
2
3
namespace Requests.Channel
4
{
5
+ /// <summary>
6
+ /// Record that transport the item and the prority of the item
7
+ /// </summary>
8
+ /// <param name="Priority">Priority of the item</param>
9
+ /// <param name="Item">Item that the channel uses</param>
10
+ public record PriorityItem<TElement>(float Priority, TElement Item);
11
+
12
/// <summary>
13
/// Represents a priority channel that allows reading and writing of items with associated priorities.
14
/// </summary>
0 commit comments