getSlideShowCache

TrueConf7/5/26About 2 min

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

NameDescription
imagesQueueForCachingAn array of objects representing the files in the caching queue
nameFile name in the system
fileIdUnique file identifier on the built-in HTTP server
isImagesCachingRunningThe flag indicating if caching is now running
currentlyCachingImageThe object providing information about the file which is now being cached
cachedSlidesAn array of objects representing the files that have already been cached
requestIdA unique request identifier
resultA flag indicating whether the request was successful

See also

Last Updated: