1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?php
- namespace huo\controller\data;
- use huolib\queue\request\Channel;
- use huolib\queue\request\Common;
- use huolib\queue\request\Crash;
- use huolib\queue\request\Device;
- use huolib\queue\request\Game;
- class App {
-
- public function activation(Common $com_rq, Device $device_rq, Game $game_rq, Channel $agent_rq) {
- return true;
- }
-
- public function startup(Common $com_rq, Device $device_rq, Game $game_rq, Channel $agent_rq) {
- return true;
- }
-
- public function crash(Common $com_rq, Device $device_rq, Game $game_rq, Channel $agent_rq, Crash $crash_rq) {
- return true;
- }
-
- public function heartbeat(Common $com_rq, Device $device_rq, Game $game_rq, Channel $agent_rq) {
- return true;
- }
- }
|