Ejemplo n.º 1
0
 public RejectException(Rej rej) : base(rej.toString())
 {
 }
 void ClientDispatcher.onRej(Rej r)
 {
     _rej = r;
     _autoResetEvent.Set();
 }
 void RequestReceiver.onRej(Rej r)
 {
     _rej = r;
     _autoResetEvent.Set();
 }
 public void onAck(Ack a)
 {
     _rej = null;
     _autoResetEvent.Set();
 }