File tree 3 files changed +4
-4
lines changed
cs/remote/src/FASTER.common
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ public interface INetworkSender : IDisposable
64
64
/// <summary>
65
65
/// Dispose, optionally waiting for ongoing outgoing calls to complete
66
66
/// </summary>
67
- void Dispose ( bool waitForSendCompletion ) ;
67
+ void DisposeNetworkSender ( bool waitForSendCompletion ) ;
68
68
69
69
/// <summary>
70
70
/// Throttle mechanism for preventing too many sends outstanding (blocking)
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ public NetworkSenderBase(int serverBufferSize)
68
68
public abstract void Dispose ( ) ;
69
69
70
70
/// <inheritdoc />
71
- public abstract void Dispose ( bool waitForSendCompletion ) ;
71
+ public abstract void DisposeNetworkSender ( bool waitForSendCompletion ) ;
72
72
73
73
/// <inheritdoc />
74
74
public abstract void Throttle ( ) ;
Original file line number Diff line number Diff line change @@ -166,10 +166,10 @@ public override void SendCallback(object context)
166
166
}
167
167
168
168
/// <inheritdoc />
169
- public override void Dispose ( ) => Dispose ( false ) ;
169
+ public override void Dispose ( ) => DisposeNetworkSender ( false ) ;
170
170
171
171
/// <inheritdoc />
172
- public override void Dispose ( bool waitForSendCompletion )
172
+ public override void DisposeNetworkSender ( bool waitForSendCompletion )
173
173
{
174
174
if ( ! waitForSendCompletion )
175
175
socket . Dispose ( ) ;
You can’t perform that action at this time.
0 commit comments