Click or drag to resize

IDataEnricherApi Interface

Provides methods for working with data enriching service.

Namespace: Casewhere.Runtime.DSL.Api
Assembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.8.5.0
Syntax
C#
public interface IDataEnricherApi

The IDataEnricherApi type exposes the following members.

Methods
 NameDescription
Public methodCode exampleCreateIndex Create an index for attributes of data class.
Public methodCode exampleDropIndex Drop an index of data class.
Public methodEnrich Enrich search data for specific data object id
Public methodCode exampleGetIndexes Get list existing indexes of data class.
Public methodQueue Queues a data enriching job for specific data object id
Public methodCode exampleQueueAll Enrich the whole data collection. The workflow will be blocked until all the data enriching jobs are queued.
Public methodCode exampleQueueAllAsync Enrich the whole data collection asynchronously. The workflow will be continue and finish without waiting all the jobs are queued.
Top
Example
C#
var dataApi = ctx.Use<IDataEnricherApi>();
dataApi.Queue(dataObjectId);
See Also