Exemplo n.º 1
0
 protected virtual void OnSendExcep(string message)
 {
     SendException?.Invoke(this, new ClientEventArgs()
     {
         sendExcepMessage = message
     });
 }
Exemplo n.º 2
0
 /* ============================================================================== Error handling */
 private void OnSendException(IDistributedMessage message, Exception exception)
 {
     SendException?.Invoke(this, new ExceptionEventArgs(exception, message));
 }
Exemplo n.º 3
0
 /* ============================================================================== Error handling */
 protected virtual void OnSendException(ClusterMessage message, Exception exception)
 {
     SendException?.Invoke(this, new ExceptionEventArgs(exception, message));
 }