ソースを参照

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

alexzy 3 年 前
コミット
d65886b37a
1 ファイル変更13 行追加0 行削除
  1. 13 0
      src/QueueServiceInterface.php

+ 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;
+}