コード例 #1
0
ファイル: Program.cs プロジェクト: reider-roque/Elpis
 public void OnException(IScheduler scheduler, Exception e)
 {
     Debug.WriteLine("Error on scheduler.");
     e.DebugStackTrace();
 }
コード例 #2
0
ファイル: OutputSegment.cs プロジェクト: bux578/SnowWhite.NET
 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();
 }
コード例 #3
0
 public void OnError(ISocket socket, Exception e)
 {
     Debug.WriteLine("Socket OnError.");
     e.DebugStackTrace();
     transactionDelegate.OnError(transaction, e);
 }
コード例 #4
0
ファイル: kayak.cs プロジェクト: gogol123/oaf
 public void OnException(IScheduler scheduler, Exception e)
 {
     e.DebugStackTrace();
 }