Browse Source

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

alexzy 4 năm trước cách đây
mục cha
commit
d65886b37a
1 tập tin đã thay đổi với 13 bổ sung0 xóa
  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;
+}