Beispiel #1
0
 public void Rejoined(ParticipantEnlistment participant)
 {
     if (DebugTrace.Info)
     {
         DebugTrace.TxTrace(TraceLevel.Info, participant.EnlistmentId, "Replying Success to transaction manager's Rejoin");
     }
     participant.DeliverCallback(Status.Success);
 }
Beispiel #2
0
 public void Committed(ParticipantEnlistment participant)
 {
     if (DebugTrace.Info)
     {
         DebugTrace.TxTrace(TraceLevel.Info, participant.EnlistmentId, "Replying Committed to transaction manager");
     }
     participant.DeliverCallback(Status.Committed);
 }
Beispiel #3
0
 public void ReadOnly(ParticipantEnlistment participant)
 {
     if (DebugTrace.Info)
     {
         DebugTrace.TxTrace(TraceLevel.Info, participant.EnlistmentId, "Replying Readonly to transaction manager");
     }
     participant.DeliverCallback(Status.Readonly);
 }