# getSlideShowCache

Description: get information about the slideshow buffer.

Request example:

{
    "method" : "getSlideShowCache",
    "requestId" : "1"
}

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
}

Parameter description:

  • requestId - a unique request identifier. You can learn more about it here.

  • 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

See also: