Skip to content

Commit 2948c42

Browse files
committed
making the event nullable
1 parent 9cdf4a0 commit 2948c42

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/dds.net-connector-csharp.lib/Interfaces/ISyncQueueReader.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
/// <typeparam name="T">Any type.</typeparam>
77
internal interface ISyncQueueReader<T>
88
{
9+
/// <summary>
10+
/// The event is initiated upon availability of data.
11+
/// </summary>
12+
event Action<T>? DataAvailable;
913
/// <summary>
1014
/// Checks if the queue has any element to dequeue.
1115
/// </summary>

0 commit comments

Comments
 (0)