This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Description
With Thunder plugins like Streamer, it is possible to create many stream sessions. App could listen to certain event from certain stream session ID, but needs to send register request with the stream session ID in params, ie;
{
"jsonrpc": "2.0",
"id": 2,
"method": "Streamer.1.register",
"params": {
"event": "statechange",
"id": "0" <-- session ID goes here, it has to be in format "id":"."
}
}
however current ThunderJs listener generates "id" as: "client..events" and seems there is no way to add a custom one.