AMQPChannel::getPrefetchSize PHP 메소드

getPrefetchSize() 공개 메소드

Get the window size to prefetch from the broker.
public getPrefetchSize ( ) : integer
리턴 integer
    public function getPrefetchSize()
    {
    }

Usage Example

예제 #1
0
 public static function castChannel(\AMQPChannel $c, array $a, Stub $stub, $isNested)
 {
     $prefix = Caster::PREFIX_VIRTUAL;
     $a += array($prefix . 'isConnected' => $c->isConnected(), $prefix . 'channelId' => $c->getChannelId(), $prefix . 'prefetchSize' => $c->getPrefetchSize(), $prefix . 'prefetchCount' => $c->getPrefetchCount(), $prefix . 'connection' => $c->getConnection());
     return $a;
 }
All Usage Examples Of AMQPChannel::getPrefetchSize