AMQPChannel::startTransaction PHP 메소드

startTransaction() 공개 메소드

This method must be called on the given channel prior to calling AMQPChannel::commitTransaction() or AMQPChannel::rollbackTransaction().
public startTransaction ( ) : boolean
리턴 boolean TRUE on success or FALSE on failure.
    public function startTransaction()
    {
    }

Usage Example

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