Эх сурвалжийг харах

增加生产游戏通知队列服务

alexzy 3 жил өмнө
parent
commit
d65886b37a

+ 13 - 0
src/QueueServiceInterface.php

@@ -0,0 +1,13 @@
+<?php
+
+namespace Yxy\Service;
+
+interface QueueServiceInterface
+{
+    /**
+     * 生产游戏通知消息队列
+     * @param int $order_id
+     * @return bool
+     */
+    public function push_notify_game(int $order_id): bool;
+}