Table of Contents | ||
---|---|---|
|
Overview
Function |
|
---|---|
Description | Tracks if whether the indexing process is completed. |
Output | A JSON String array object containing the following text if the given table; message on successful completion of the indexing process. |
Example
Code Block | ||
---|---|---|
| ||
client.isPaginationSupportedwaitForIndexing(“SampleRecordStore”, function(data) { console.log (data[“message”"message"]); }, function(error) { console.log(“error"error occured: ”" + error[“message”]); }); |
Sample output
Code Block | ||
---|---|---|
| ||
{ status: "success" message: "Indexing completed successfully" } |