SDK
SDK Jvm v1.x
2

list #

Gets the complete list of indexes handled by Kuzzle.

:::: tabs ::: tab Java

Arguments #

Copied to clipboard!
CompletableFuture<ArrayList<String>> list() 
  throws NotConnectedException, InternalException

Return #

Returns an ArrayList<String> containing the list of index names handled by Kuzzle.

Usage #

Copied to clipboard!
ArrayList<String> result = kuzzle.getIndexController().list().get();

::: ::: tab Kotlin

Arguments #

Copied to clipboard!
fun list(): CompletableFuture<ArrayList<String>>

Return #

Returns an ArrayList<String> containing the list of index names handled by Kuzzle.

Usage #

Copied to clipboard!
val result: ArrayList<String> = kuzzle.indexController.list().get()

::: ::::