refresh #
Creates a new Document object with the last version of this document stored in Kuzzle.
refresh([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 #
Return a new Document object containing the last document version.
Usage #
document.refresh(new ResponseListener<Document>() {
@Override
public void onSuccess(Document object) {
// called once the refresh action has been completed
}
@Override
public void onError(JSONObject error) {
// Handle error
}
});