Unknown macro: {next_previous_links}
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

Overview

Function

waitForIndexing(success, error)

Description

Tracks if the indexing process is completed.

Output

A JSON String object containing the message on successful completion of the indexing process.

Example

client.isPaginationSupported(“SampleRecordStore”, function(data) {
      console.log (data[“message”]);
}, function(error) {
      console.log(“error occured: ” + error[“message”]);  
});

Sample output

 {
	status: "success"
	message: "Indexing completed successfully"
}
  • No labels