Status
A status request is used to ask Unreal about its current status regarding image caching. This is used when the interface happens to boot up or restart at a later point and needs to make sure what version of images Unreal has loaded.
Status requests are sent using StatusRequest. Unreal responds with StatusResponse.
StatusRequest
Sends a status request to Unreal.
Example request:
{
"type": "StatusRequest"
}
StatusResponse
Returned by Unreal in response to a StatusRequest.
Example response:
{
"type": "StatusResponse",
"recache_time": <timestamp>,
}


