You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Interprocess/Contracts/ISubscriber.cs
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,8 @@ public interface ISubscriber : IDisposable
30
30
boolTryDequeue(outReadOnlyMemory<byte>message);
31
31
32
32
/// <summary>
33
-
/// Attempts to dequeue the next message if it is ready. It does not wait for a message. This method populates the <paramref name="buffer"/> that is passed in.
33
+
/// Attempts to dequeue the next message if it is ready. It does not wait for a message.
34
+
/// This method populates the <paramref name="buffer"/> that is passed in.
34
35
/// Make sure that the buffer is large enough to receive the entire message, or the message is truncated to fit the buffer.
35
36
/// </summary>
36
37
/// <param name="buffer">The memory buffer that is populated with the message. Make sure
0 commit comments