Ejemplo n.º 1
0
 public void OnException(IScheduler scheduler, Exception e)
 {
     Debug.WriteLine("Error on scheduler.");
     e.DebugStackTrace();
 }
Ejemplo n.º 2
0
 public void OnError(Exception e)
 {
     Debug.WriteLine("Error during response.");
     e.DebugStackTrace();
     // XXX what to do? for now it's an error to have an error :S
     // probably the right thing to do is end the socket
     // and discard any pending responses.
     //socket.End()
     //socket.Dispose();
 }
Ejemplo n.º 3
0
 public void OnError(ISocket socket, Exception e)
 {
     Debug.WriteLine("Socket OnError.");
     e.DebugStackTrace();
     transactionDelegate.OnError(transaction, e);
 }
Ejemplo n.º 4
0
 public void OnException(IScheduler scheduler, Exception e)
 {
     e.DebugStackTrace();
 }