Skip to content

Commit

Permalink
Ensure DiagnosticListener is on IBufferedChannel (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mpdreamz authored Apr 17, 2023
1 parent 20bfbed commit d99446e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Elastic.Channels/BufferedChannelBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ public interface IBufferedChannel<in TEvent> : IDisposable
/// Tries to write many <paramref name="events"/> to the channel returning true if ALL messages were written succesfully
/// </summary>
bool TryWriteMany(IEnumerable<TEvent> events);

/// <inheritdoc cref="IChannelDiagnosticsListener"/>
IChannelDiagnosticsListener? DiagnosticsListener { get; }
}

/// <summary>
Expand Down

0 comments on commit d99446e

Please sign in to comment.