SDK
SDK Javascript v5.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.

count #

Returns the number of subscribers in the room.


count(callback) #

Arguments Type Description
callback function Callback handling the response

Callback Response #

Returns an integer containing the number of users subscribing to this room.

Usage #

Copied to clipboard!
// Using callbacks (NodeJS or Web Browser)
room.count(function (error, result) {
  // ...
});
// Using promises (NodeJS)
room.countPromise().then(result => {
  // ...
});

Callback response

Copied to clipboard!
1