Interface IndexingService
-
- All Known Implementing Classes:
QueueIndexingService
public interface IndexingServiceCreated by The eXo Platform SAS Author : eXoPlatform exo@exoplatform.com 10/12/15
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidindex(String connectorName, String id)Add a create operation to the indexing queuevoidinit(String connectorName)Add a init operation to the indexing queue to init the indexvoidreindex(String connectorName, String id)Add a update operation to the indexing queuevoidunindex(String connectorName, String id)Add a delete operation to the indexing queue
-
-
-
Method Detail
-
init
void init(String connectorName)
Add a init operation to the indexing queue to init the index- Parameters:
connectorName- Name of the connector- eXo level API
- Experimental
-
index
void index(String connectorName, String id)
Add a create operation to the indexing queue- Parameters:
connectorName- Name of the connectorid- id of the document- eXo level API
- Experimental
-
reindex
void reindex(String connectorName, String id)
Add a update operation to the indexing queue- Parameters:
connectorName- Name of the connectorid- id of the document- eXo level API
- Experimental
-
-