SDK
SDK C++ v1.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.

This SDK has been deprecated because of stability issues. It is not advised to use it in a production environment.

now #

Fetch the current server timestamp, in Epoch-millis format.

Signature #

long long now();

long long now(const kuzzleio::query_options& options);

Arguments #

ArgumentsTypeDescription
options
kuzzleio::query_options*
Query options

options #

Additional query options

OptionType
(default)
Description
queuable
bool

(true)
If true, queues the request during downtime, until connected to Kuzzle again

Return #

An Epoch-millis timestamp.

Exceptions #

Throws a kuzzleio::KuzzleException if there is an error. See how to handle error.

Usage #

try {
  int64_t timestamp = kuzzle->server->now();
  std::cout << "Epoch-millis timestamp: " << timestamp << std::endl;
} catch (kuzzleio::KuzzleException& e) {
  std::cerr << e.what() << std::endl;
}