SDK
SDK Java v3.x
2

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

mDelete #

Deletes multiple indexes.

Arguments #

Copied to clipboard!
CompletableFuture<ArrayList<String>> mDelete(final ArrayList<String> indexes) 
  throws NotConnectedException, InternalException
Argument Type Description
indexes ArrayList<String> List of indexes names

Return #

Returns an ArrayList<String> containing the list of indexes names deleted.

Usage #

Copied to clipboard!
ArrayList<String> indexes = new ArrayList<>();
  indexes.add("nyc-open-data");
ArrayList<String> result = kuzzle.getIndexController().mDelete(indexes).get();