delete #
Deletes an entire index from Kuzzle.
:::: tabs ::: tab Java
Arguments #
CompletableFuture<Void> delete(String index)
throws NotConnectedException, InternalException
Argument | Type | Description |
---|---|---|
index | String | Index name |
Usage #
kuzzle.getIndexController().delete("nyc-open-data").get();
::: ::: tab Kotlin
Arguments #
fun delete(index: String): CompletableFuture<Void>
Argument | Type | Description |
---|---|---|
index | String | Index name |
Usage #
kuzzle.indexController.delete("nyc-open-data").get()
::: ::::
Edit this page on Github(opens new window)