1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11:
<?php
namespace SAREhub\Client\Amqp;
use SAREhub\Client\Message\Exchange;
use SAREhub\Client\Message\Message;
interface AmqpProcessConfirmStrategy
{
public function confirm(AmqpChannelWrapper $channel, Message $originalIn, Exchange $exchange);
}