Package com.arangodb
Interface ArangoViewAsync
- All Superinterfaces:
ArangoSerdeAccessor
- All Known Subinterfaces:
ArangoSearchAsync,SearchAliasAsync
Asynchronous version of
ArangoView-
Method Summary
Modifier and TypeMethodDescriptiondb()The handler of the database the collection is withindrop()Asynchronous version ofArangoView.drop()exists()Asynchronous version ofArangoView.exists()getInfo()Asynchronous version ofArangoView.getInfo()name()The name of the viewAsynchronous version ofArangoView.rename(String)Methods inherited from interface com.arangodb.ArangoSerdeAccessor
getSerde
-
Method Details
-
db
ArangoDatabaseAsync db()The handler of the database the collection is within- Returns:
- database handler
-
name
String name()The name of the view- Returns:
- view name
-
exists
CompletableFuture<Boolean> exists()Asynchronous version ofArangoView.exists() -
drop
CompletableFuture<Void> drop()Asynchronous version ofArangoView.drop() -
rename
Asynchronous version ofArangoView.rename(String) -
getInfo
CompletableFuture<ViewEntity> getInfo()Asynchronous version ofArangoView.getInfo()
-