/**
  * setup the readStream event
  */
 protected function attachReadStream()
 {
     $this->ThrowOnConnectionInvalid();
     $this->loop->addReadStream($this->connection, function () {
         $this->readToBuffer();
     });
 }