IData Enricher Api Interface
Provides methods for working with data enriching service.
Definition
Namespace: Casewhere.Runtime.DSL.Api
Assembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.9.8.6
Assembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.9.8.6
C#
public interface IDataEnricherApiExample
C#
var dataApi = ctx.Use<IDataEnricherApi>();
dataApi.Queue(dataObjectId);
Methods
| CreateIndex | Create an index for attributes of data class. |
| DropIndex | Drop an index of data class. |
| Enrich | Enrich search data for specific data object id |
| GetIndexes | Get list existing indexes of data class. |
| Queue | Queues a data enriching job for specific data object id |
| QueueAll | Enrich the whole data collection. The workflow will be blocked until all the data enriching jobs are queued. |
| QueueAllAsync | Enrich the whole data collection asynchronously. The workflow will be continue and finish without waiting all the jobs are queued. |