1234567891011121314151617 |
- <?php
- /**
- * Created by PhpStorm.
- * User: stanley-king
- * Date: 2018/7/23
- * Time: 下午10:56
- */
- namespace event;
- interface IProcessor
- {
- public function onStart();
- public function onRequest($bufid, $body);
- public function onClose($bufid);
- public function onConnected($bufid,$stream,$host,$port,$args);
- }
|