mDelete #
Deletes multiple indexes.
Arguments #
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 #
ArrayList<String> indexes = new ArrayList<>();
indexes.add("nyc-open-data");
ArrayList<String> result = kuzzle.getIndexController().mDelete(indexes).get();
Edit this page on Github(opens new window)