当前位置: 首页>>代码示例>>PHP>>正文


PHP AMQPChannel::tx_commit方法代码示例

本文整理汇总了PHP中PhpAmqpLib\Channel\AMQPChannel::tx_commit方法的典型用法代码示例。如果您正苦于以下问题:PHP AMQPChannel::tx_commit方法的具体用法?PHP AMQPChannel::tx_commit怎么用?PHP AMQPChannel::tx_commit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PhpAmqpLib\Channel\AMQPChannel的用法示例。


在下文中一共展示了AMQPChannel::tx_commit方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: commitTransaction

 /**
  * Commit a pending transaction.
  *
  * @throws AMQPChannelException    If no transaction was started prior to
  *                                 calling this method.
  * @throws AMQPConnectionException If the connection to the broker was lost.
  *
  * @return bool TRUE on success or FALSE on failure.
  */
 public function commitTransaction()
 {
     if (!$this->tx) {
         throw new AMQPChannelException('No transaction in progress.');
     }
     try {
         $this->channel->tx_commit();
     } catch (Exception $e) {
         throw new AMQPConnectionException($e->getMessage(), $e->getCode(), $e->getPrevious());
     }
     return true;
 }
开发者ID:calcinai,项目名称:php-amqplib-bridge,代码行数:21,代码来源:AMQPChannel.php

示例2: afterCommit

 public function afterCommit(UnitOfWorkInterface $unitOfWork)
 {
     if ($this->isOpen) {
         try {
             if ($this->getTerminalProperty('isTransactional')) {
                 $this->channel->tx_commit();
             } else {
                 if ($this->getTerminalProperty('waitForAck')) {
                     $this->waitForConfirmations();
                 }
             }
         } catch (\Exception $ex) {
             $this->logger->warn("Unable to commit transaction on channel.");
         }
         $this->closeTerminal();
     }
 }
开发者ID:fcm,项目名称:GovernorFramework,代码行数:17,代码来源:ChannelTransactionUnitOfWorkListener.php

示例3: commitTransaction

 /**
  * @inheritdoc
  */
 public function commitTransaction()
 {
     $this->channel->tx_commit();
 }
开发者ID:prolic,项目名称:HumusAmqp,代码行数:7,代码来源:Channel.php


注:本文中的PhpAmqpLib\Channel\AMQPChannel::tx_commit方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。