randomkey #
Returns a random key from the memory storage.
randomkey([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 one of the stored key names, at random.
Usage #
kuzzle.memoryStorage.randomkey(new ResponseListener<String>() {
@Override
public void onSuccess(String key) {
// callback called once the action has completed
}
@Override
public void onError(JSONObject error) {
}
});
Callback response:
"key2"
Edit this page on Github(opens new window)