list #
Gets the complete list of indexes handled by Kuzzle.
:::: tabs ::: tab Java
Arguments #
CompletableFuture<ArrayList<String>> list()
throws NotConnectedException, InternalExceptionReturn #
Returns an ArrayList<String> containing the list of index names handled by Kuzzle.
Usage #
ArrayList<String> result = kuzzle.getIndexController().list().get();::: ::: tab Kotlin
Arguments #
fun list(): CompletableFuture<ArrayList<String>>Return #
Returns an ArrayList<String> containing the list of index names handled by Kuzzle.
Usage #
val result: ArrayList<String> = kuzzle.indexController.list().get()::: ::::