File tree Expand file tree Collapse file tree 2 files changed +9
-11
lines changed Expand file tree Collapse file tree 2 files changed +9
-11
lines changed Original file line number Diff line number Diff line change 44namespace NetMQ . Monitoring
55{
66 /// <summary>
7- /// NetMQMonitor interface, implement to fake the NetMQMonitor in tests .
7+ /// Monitors a <see cref="NetMQSocket"/> for events, raising them via events .
88 /// </summary>
9+ /// <remarks>
10+ /// To run a monitor instance, either:
11+ /// <list type="bullet">
12+ /// <item>Call <see cref="Start"/> (blocking) and <see cref="Stop"/>, or</item>
13+ /// <item>Call <see cref="AttachToPoller{T}"/> and <see cref="DetachFromPoller()"/>.</item>
14+ /// </list>
15+ /// </remarks>
916 public interface INetMQMonitor : IDisposable
1017 {
1118 /// <summary>
Original file line number Diff line number Diff line change 77
88namespace NetMQ . Monitoring
99{
10- /// <summary>
11- /// Monitors a <see cref="NetMQSocket"/> for events, raising them via events.
12- /// </summary>
13- /// <remarks>
14- /// To run a monitor instance, either:
15- /// <list type="bullet">
16- /// <item>Call <see cref="Start"/> (blocking) and <see cref="Stop"/>, or</item>
17- /// <item>Call <see cref="AttachToPoller{T}"/> and <see cref="DetachFromPoller()"/>.</item>
18- /// </list>
19- /// </remarks>
10+ /// <inheritdoc />
2011 public class NetMQMonitor : INetMQMonitor
2112 {
2213 private readonly NetMQSocket m_monitoringSocket ;
You can’t perform that action at this time.
0 commit comments