#回合結果通知

回合結果通知功能透過 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
}