AMQPChannel::setPrefetchSize PHP Method

setPrefetchSize() public method

Set the prefetch window size, in octets, during a call to AMQPQueue::consume() or AMQPQueue::get(). Any call to this method will automatically set the prefetch message count to 0, meaning that the prefetch message count setting will be ignored. If the call to either AMQPQueue::consume() or AMQPQueue::get() is done with the AMQP_AUTOACK flag set, this setting will be ignored.
public setPrefetchSize ( integer $size ) : boolean
$size integer The window size, in octets, to prefetch.
return boolean TRUE on success or FALSE on failure.
    public function setPrefetchSize($size)
    {
    }

Usage Example

Esempio n. 1
0
 /**
  * @param $size
  *
  * @return bool
  */
 public function setPrefetchSize($size)
 {
     try {
         return $this->rawChannel->setPrefetchSize($size);
     } catch (\AMQPConnectionException $e) {
         ClientHelper::throwRightException($e);
     }
 }
All Usage Examples Of AMQPChannel::setPrefetchSize