AMQPConnection::getMaxChannels PHP Method

getMaxChannels() public method

When connection is connected, effective connection value returned, which is normally the same as original correspondent value passed to constructor, otherwise original value passed to constructor returned.
public getMaxChannels ( ) : integer
return integer
    public function getMaxChannels()
    {
    }

Usage Example

コード例 #1
0
ファイル: Client.php プロジェクト: csharpru/yii2-amqp
 /**
  * @return int|null
  */
 public function getMaxChannels()
 {
     return $this->rawConnection->getMaxChannels();
 }