ルーム削除

ルームが削除されたときに通知を送信します。

送信するJSONは以下の情報を含みます。

JSONキー

説明

roomId

数値

ルームID

node

オブジェクト

送信元ノード情報

  • uid

文字列

ノードUID

  • host

文字列

ホスト

  • port

数値

ポート

  • protocol

文字列

プロトコル

  • type

数値

ノードタイプ

  • properties

オブジェクト

任意のキー・値を含むカスタムプロパティマップ

  • internalProperties

オブジェクト

サーバー間処理用の任意のキー・値を含むカスタムプロパティマップ

JSON例

{
    "roomId": 1,
    "node": {
        "uid": "[ServerUID:1]",
        "host": "192.0.2.100",
        "port": 9123,
        "protocol": "TCP",
        "type": 1,
        "properties": {},
        "internalProperties": {}
    }
}