QueueServiceInterface.php 227 B

12345678910111213
  1. <?php
  2. namespace Yxy\Service;
  3. interface QueueServiceInterface
  4. {
  5. /**
  6. * 生产游戏通知消息队列
  7. * @param int $order_id
  8. * @return bool
  9. */
  10. public function push_notify_game(int $order_id): bool;
  11. }