/**
  * 发送数据给客户端
  * @see Man\Core.SocketWorker::sendToClient()
  */
 public function sendToClient($buffer, $con = null)
 {
     if ($con) {
         $this->currentDealFd = (int) $con;
     }
     return parent::sendToClient($buffer);
 }