#回合结果通知

回合结果通知功能通过 RabbitMQ 提供有关回合结算结果的实时更新。

#队列名称

队列名称遵循模式 {identity_prefix}.notify_issue_result.q。检查队列列表 以获取您环境中的确切队列名称。

示例:staging.10102.merchant102_server.notify_issue_result.q

#事件数据(有效负载)

#SettledWinRoundEvent

{
  "tableId": "string",          // Table ID
  "roundId": "string",          // Round ID
  "gameCategory": "CASINO",     // Game category
  "gameType": "string",         // Game type
  "result": "string",           // Game result
  "openAt": "long",             // Round open time (timestamp in milliseconds)
  "closeAt": "long"             // Round close time (timestamp in milliseconds)
}

BCR result 编码请参见百家乐结果格式

#负载示例

{
  "tableId": "BCR_MB553",
  "roundId": "BCR_MB553-250908-1550",
  "gameCategory": "CASINO",
  "gameType": "BCR",
  "result": "33,37-29,29",
  "openAt": 1702656000000,
  "closeAt": 1702656300000
}