SDK
SDK Jvm v1.x
2

list #

Gets the complete list of indexes handled by Kuzzle.

:::: tabs ::: tab Java

Arguments #

CompletableFuture<ArrayList<String>> list() 
  throws NotConnectedException, InternalException

Return #

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()

::: ::::