IProcessor.php 325 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: stanley-king
  5. * Date: 2018/7/23
  6. * Time: 下午10:56
  7. */
  8. namespace event;
  9. interface IProcessor
  10. {
  11. public function onStart();
  12. public function onRequest($bufid, $body);
  13. public function onClose($bufid);
  14. public function onConnected($bufid,$stream,$host,$port,$args);
  15. }