now #
Fetch the current server timestamp, in Epoch-millis format.
Signature #
long long now();
long long now(const kuzzleio::query_options& options);Arguments #
| Arguments | Type | Description |
|---|---|---|
options | kuzzleio::query_options* | Query options |
options #
Additional query options
| Option | Type (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;
}