```php
while (1)
{
$read = $this->_readFds;
$write = $this->_writeFds;
// 等待可读或者可写事件stream_select($read, $write, $e, 0, $this->_selectTimeout);
// 尝试执行定时任务
if(!$this->_scheduler->isEmpty())
{
$this->tick();
}
// 这些描述符可读,执行对应描述符的读回调函数
ifthis->_allEvents, array($this->_allEvents));
}
}
}
// 这些描述符可写,执行对应描述符的写回调函数