__construct() public method

Constructor
public __construct ( resource $fd, mixed $pool = null )
$fd resource File descriptor
$pool mixed ConnectionPool
コード例 #1
0
ファイル: Connection.php プロジェクト: shamahan/phpdaemon
 public function __construct($fd, $pool = null)
 {
     parent::__construct($fd, $pool);
     $this->resultTypeStack = new \SplStack();
     $this->argsStack = new \SplStack();
 }