Interface SearchIndexer
-
- All Superinterfaces:
AutoCloseable
- All Known Implementing Classes:
SearchIndexerImpl
public interface SearchIndexer extends AutoCloseable
- Author:
- Fabio Massimo Ercoli
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CompletableFuture<?>
add(Object providedId, String routingKey, Object entity)
CompletableFuture<?>
addOrUpdate(Object providedId, String routingKey, Object entity)
void
close()
CompletableFuture<?>
delete(Object providedId, String routingKey, Object entity)
CompletableFuture<?>
purge(Object providedId, String routingKey)
-
-
-
Method Detail
-
add
CompletableFuture<?> add(Object providedId, String routingKey, Object entity)
-
addOrUpdate
CompletableFuture<?> addOrUpdate(Object providedId, String routingKey, Object entity)
-
delete
CompletableFuture<?> delete(Object providedId, String routingKey, Object entity)
-
purge
CompletableFuture<?> purge(Object providedId, String routingKey)
-
close
void close()
- Specified by:
close
in interfaceAutoCloseable
-
-