Package com.arangodb
Interface ArangoSearchAsync
-
- All Superinterfaces:
ArangoSerdeAccessor
,ArangoViewAsync
@ThreadSafe public interface ArangoSearchAsync extends ArangoViewAsync
Asynchronous version ofArangoSearch
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CompletableFuture<ViewEntity>
create()
Asynchronous version ofArangoSearch.create()
CompletableFuture<ViewEntity>
create(ArangoSearchCreateOptions options)
Asynchronous version ofArangoSearch.create(ArangoSearchCreateOptions)
CompletableFuture<ArangoSearchPropertiesEntity>
getProperties()
Asynchronous version ofArangoSearch.getProperties()
CompletableFuture<ArangoSearchPropertiesEntity>
replaceProperties(ArangoSearchPropertiesOptions options)
Asynchronous version ofArangoSearch.replaceProperties(ArangoSearchPropertiesOptions)
CompletableFuture<ArangoSearchPropertiesEntity>
updateProperties(ArangoSearchPropertiesOptions options)
Asynchronous version ofArangoSearch.updateProperties(ArangoSearchPropertiesOptions)
-
Methods inherited from interface com.arangodb.ArangoSerdeAccessor
getSerde
-
-
-
-
Method Detail
-
create
CompletableFuture<ViewEntity> create()
Asynchronous version ofArangoSearch.create()
-
create
CompletableFuture<ViewEntity> create(ArangoSearchCreateOptions options)
Asynchronous version ofArangoSearch.create(ArangoSearchCreateOptions)
-
getProperties
CompletableFuture<ArangoSearchPropertiesEntity> getProperties()
Asynchronous version ofArangoSearch.getProperties()
-
updateProperties
CompletableFuture<ArangoSearchPropertiesEntity> updateProperties(ArangoSearchPropertiesOptions options)
Asynchronous version ofArangoSearch.updateProperties(ArangoSearchPropertiesOptions)
-
replaceProperties
CompletableFuture<ArangoSearchPropertiesEntity> replaceProperties(ArangoSearchPropertiesOptions options)
Asynchronous version ofArangoSearch.replaceProperties(ArangoSearchPropertiesOptions)
-
-