123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?php
- namespace huolib\queue\controller\sdk;
- 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 (new \huo\controller\data\App())->activation($com_rq,$device_rq,$game_rq,$agent_rq);
- }
-
- public function startup(Common $com_rq, Device $device_rq, Game $game_rq, Channel $agent_rq) {
- return (new \huo\controller\data\App())->startup($com_rq,$device_rq,$game_rq,$agent_rq);
- }
-
- public function crash(Common $com_rq, Device $device_rq, Game $game_rq, Channel $agent_rq, Crash $crash_rq) {
- return (new \huo\controller\data\App())->crash($com_rq,$device_rq,$game_rq,$agent_rq,$crash_rq);
- }
-
- public function heartbeat(Common $com_rq, Device $device_rq, Game $game_rq, Channel $agent_rq) {
- return (new \huo\controller\data\App())->heartbeat($com_rq,$device_rq,$game_rq,$agent_rq);
- }
- }
|