count() public method

count all pending operations
public count ( ) : integer
return integer
Example #1
0
 /**
  * commit a bulk-transaction
  * @return array
  * @throws Exception
  */
 public function commitBulk()
 {
     if ($this->bulk && $this->bulk->count()) {
         $result = $this->bulk->commit();
         $this->bulk = null;
         return $result;
     }
     throw new Exception('bulk error!');
 }