ping #
Pings the memory storage database.
ping([options], callback) #
Arguments | Type | Description |
---|---|---|
options | JSON Object | Optional parameters |
callback | function | Callback |
Options #
Option | Type | Description | Default |
---|---|---|---|
queuable | boolean | Make this request queuable or not | true |
Callback Response #
Returns a simple "PONG" string.
Usage #
kuzzle.memoryStorage.ping(new ResponseListener<String>() {
@Override
public void onSuccess(String response) {
// callback called once the action has completed
}
@Override
public void onError(JSONObject error) {
}
});
Callback response:
"PONG"
Edit this page on Github(opens new window)