# getSlideShowCache

Description

Get information about the slideshow buffer

void getSlideShowCache()

Response example

{
    "method": "getSlideShowCache",
    "requestId" : "1",
    "imagesQueueForCaching": [
        {
            "name": "3.png",
            "fileId": 179748251
        },
        {
            "name": "4.png",
            "fileId": 179750332
        }
    ],
    "cachedSlides": [
        {
            "name": "1.png",
            "fileId": 179747842
        },
        {
            "name": "2.png",
            "fileId": 179747855
        }
    ],
    "isImagesCachingRunning": true,
    "currentlyCachingImage":
    {
        "name": "5.png",
        "fileId": 179748250
    },
    "result": true
}

Response Parameters

Name Description
imagesQueueForCaching An array of objects representing the files in the caching queue
name File name in the system
fileId Unique file identifier on the built-in HTTP server
isImagesCachingRunning The flag indicating if caching is now running
currentlyCachingImage The object providing information about the file which is now being cached
cachedSlides An array of objects representing the files that have already been cached
requestId A unique request identifier
result A flag indicating whether the request was successful

See also

Last Updated: 09/12/2025