SDK
SDK Javascript v6.x
1

You are currently looking at the documentation of a previous version of Kuzzle. We strongly recommend that you use the latest version. You can also use the version selector in the top menu.

startQueuing #

Starts the requests queuing. Works only in offline state, and if the autoQueue option is set to false.

Arguments #

Copied to clipboard!
startQueuing();

Return #

The Kuzzle instance.

Usage #

Copied to clipboard!
try {
  kuzzle.startQueuing();
  console.log('Start queuing requests');
} catch (error) {
  console.error(error);
}