AMQPChannel::commitTransaction PHP 메소드

commitTransaction() 공개 메소드

Commit a pending transaction.
public commitTransaction ( ) : boolean
리턴 boolean TRUE on success or FALSE on failure.
    public function commitTransaction()
    {
    }

Usage Example

예제 #1
0
파일: Channel.php 프로젝트: Evaneos/Hector
 /**
  * @return bool
  */
 public function commitTransaction()
 {
     if (!$this->isInitialized()) {
         $this->initialize();
     }
     return $this->channel->commitTransaction();
 }
All Usage Examples Of AMQPChannel::commitTransaction