예제 #1
0
 /// <summary>
 /// Handles the basic deliver.
 /// </summary>
 /// <param name="consumerTag">The consumer tag.</param>
 /// <param name="deliveryTag">The delivery tag.</param>
 /// <param name="redelivered">if set to <c>true</c> [redelivered].</param>
 /// <param name="exchange">The exchange.</param>
 /// <param name="routingKey">The routing key.</param>
 /// <param name="properties">The properties.</param>
 /// <param name="body">The body.</param>
 public void HandleBasicDeliver(string consumerTag, ulong deliveryTag, bool redelivered, string exchange, string routingKey, IBasicProperties properties, byte[] body)
 {
     _basicConsumer.HandleBasicDeliver(consumerTag, deliveryTag, redelivered, exchange, routingKey, properties, body);
 }