IDataEnricherApiQueueAll Method
|
Enrich the whole data collection. The workflow will be blocked until all the data enriching jobs are queued.
Namespace: Casewhere.Runtime.DSL.ApiAssembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.8.5.0
Syntaxvoid QueueAll(
string dataClassName,
TimeSpan? timeout = null,
int batchSize = 100
)
Parameters
- dataClassName String
- The data class name.
- timeout NullableTimeSpan (Optional)
- The timeout.
- batchSize Int32 (Optional)
- The batch size.
Examplevar dataApi = ctx.Use<IDataEnricherApi>();
dataApi.QueueAll("Employee", TimeSpan.FromSeconds(30));
See Also