Exemplo n.º 1
0
 public function __construct($address = null)
 {
     parent::__construct();
     if ($address) {
         $this->open($address);
     }
 }
Exemplo n.º 2
0
 public function __construct($address = null)
 {
     parent::__construct();
     // $this->setBlocking(false);
     if (is_null($address)) {
         return;
     }
     if (is_resource($address)) {
         $this->open($address);
     } else {
         // TODO: open socket by address
     }
 }
Exemplo n.º 3
0
 public function __construct($resource = null)
 {
     parent::__construct($resource);
     $this->on("rawdata", [$this, "onRawData"]);
 }