AMQPChannel::isConnected PHP Метод

isConnected() публичный Метод

Check the channel connection.
public isConnected ( ) : boolean
Результат boolean Indicates whether the channel is connected.
    public function isConnected()
    {
    }

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::isConnected