FeedSimpleAck() публичный абстрактный Метод

Notifies the handle that the transaction has completed and a simple ack has been received
public abstract FeedSimpleAck ( ) : void
Результат void
Пример #1
0
 /// <summary>
 /// Called whenever a simple ack is received
 /// for this transaction
 /// </summary>
 /// <param name="message">The received message</param>
 public void OnSimpleAck(SimpleAckMessage message)
 {
     lock (_lock)
     {
         if (_state == ClientState.AwaitConfirmation)
         {
             _handle.FeedSimpleAck();
             _manager.DisposeTransaction(this);
         }
     }
 }