AbstractIndex<T>, AsyncBaseIndex<T>, SerializableAsyncIndexpublic interface AsyncPartialUpdate<T> extends AsyncBaseIndex<T>
| Modifier and Type | Method | Description |
|---|---|---|
default CompletableFuture<AsyncTaskSingleIndex> |
partialUpdateObject(PartialUpdateOperation operation) |
Partially update an object, create the object if it does not exist
|
default CompletableFuture<AsyncTaskSingleIndex> |
partialUpdateObject(PartialUpdateOperation operation,
boolean createIfNotExists) |
Partially update an object
|
default CompletableFuture<AsyncTaskSingleIndex> |
partialUpdateObject(PartialUpdateOperation operation,
boolean createIfNotExists,
RequestOptions requestOptions) |
Partially update an object
|
default CompletableFuture<AsyncTaskSingleIndex> |
partialUpdateObject(PartialUpdateOperation operation,
RequestOptions requestOptions) |
Partially update an object, create the object if it does not exist
|
default CompletableFuture<AsyncTaskSingleIndex> |
partialUpdateObject(String objectID,
Object object) |
Partially update an object
|
default CompletableFuture<AsyncTaskSingleIndex> |
partialUpdateObject(String objectID,
Object object,
RequestOptions requestOptions) |
Partially update an object
|
default CompletableFuture<AsyncTaskSingleIndex> |
partialUpdateObjects(List<Object> objects) |
Partially update a objects
|
default CompletableFuture<AsyncTaskSingleIndex> |
partialUpdateObjects(List<Object> objects,
boolean createIfNotExists) |
Partially update a objects
|
default CompletableFuture<AsyncTaskSingleIndex> |
partialUpdateObjects(List<Object> objects,
boolean createIfNotExists,
RequestOptions requestOptions) |
Partially update a objects
|
default CompletableFuture<AsyncTaskSingleIndex> |
partialUpdateObjects(List<Object> objects,
RequestOptions requestOptions) |
Partially update a objects
|
getKlass, getNamegetApiClientdefault CompletableFuture<AsyncTaskSingleIndex> partialUpdateObject(@Nonnull String objectID, @Nonnull Object object)
objectID - the ID of object to updateobject - the object to update subclassesdefault CompletableFuture<AsyncTaskSingleIndex> partialUpdateObject(@Nonnull String objectID, @Nonnull Object object, @Nonnull RequestOptions requestOptions)
objectID - the ID of object to updateobject - the object to updaterequestOptions - Options to pass to this request subclassesdefault CompletableFuture<AsyncTaskSingleIndex> partialUpdateObjects(@Nonnull List<Object> objects)
objects - the list of objects to update (with an objectID)default CompletableFuture<AsyncTaskSingleIndex> partialUpdateObjects(@Nonnull List<Object> objects, @Nonnull RequestOptions requestOptions)
objects - the list of objects to update (with an objectID)requestOptions - Options to pass to this requestdefault CompletableFuture<AsyncTaskSingleIndex> partialUpdateObjects(@Nonnull List<Object> objects, boolean createIfNotExists, @Nonnull RequestOptions requestOptions)
objects - the list of objects to update (with an objectID)createIfNotExists - Value that indicates the object is created if the objectID doesn't
existsrequestOptions - Options to pass to this requestdefault CompletableFuture<AsyncTaskSingleIndex> partialUpdateObjects(@Nonnull List<Object> objects, boolean createIfNotExists)
objects - the list of objects to update (with an objectID)createIfNotExists - Value that indicates the object is created if the objectID doesn't
existsdefault CompletableFuture<AsyncTaskSingleIndex> partialUpdateObject(@Nonnull PartialUpdateOperation operation)
operation - the operation to perform on this object subclassesdefault CompletableFuture<AsyncTaskSingleIndex> partialUpdateObject(@Nonnull PartialUpdateOperation operation, @Nonnull RequestOptions requestOptions)
operation - the operation to perform on this objectrequestOptions - Options to pass to this request subclassesdefault CompletableFuture<AsyncTaskSingleIndex> partialUpdateObject(@Nonnull PartialUpdateOperation operation, boolean createIfNotExists)
operation - the operation to perform on this objectcreateIfNotExists - should the object be created or not subclassesdefault CompletableFuture<AsyncTaskSingleIndex> partialUpdateObject(@Nonnull PartialUpdateOperation operation, boolean createIfNotExists, @Nonnull RequestOptions requestOptions)
operation - the operation to perform on this objectcreateIfNotExists - should the object be created or notrequestOptions - Options to pass to this request subclassesCopyright © 2018. All rights reserved.