SDK
SDK Java v3.x
2

This SDK is deprecated. We recommend to use the Kuzzle SDK-JVM.
A migration guide is available here

list #

Gets the complete list of indexes handled by Kuzzle.

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