AMQPChannel::confirmSelect PHP Method

confirmSelect() public method

Set the channel to use publisher acknowledgements. This can only used on a non-transactional channel.
public confirmSelect ( )
    public function confirmSelect()
    {
    }

Usage Example

コード例 #1
0
ファイル: Channel.php プロジェクト: prolic/HumusAmqp
 /**
  * @inheritdoc
  */
 public function confirmSelect()
 {
     $this->channel->confirmSelect();
 }