diff --git a/src/RulesEngine/Interfaces/IRulesEngine.cs b/src/RulesEngine/Interfaces/IRulesEngine.cs index 65c21570..2301435f 100644 --- a/src/RulesEngine/Interfaces/IRulesEngine.cs +++ b/src/RulesEngine/Interfaces/IRulesEngine.cs @@ -12,8 +12,8 @@ namespace RulesEngine.Interfaces { public interface IRulesEngine { - IAsyncEnumerable> ExecuteAllWorkflows(object[] inputs, [EnumeratorCancellation] CancellationToken ct = default); - IAsyncEnumerable> ExecuteAllWorkflows(RuleParameter[] inputs, [EnumeratorCancellation] CancellationToken ct = default); + IAsyncEnumerable> ExecuteAllWorkflows(object[] inputs, CancellationToken ct = default); + IAsyncEnumerable> ExecuteAllWorkflows(RuleParameter[] inputs, CancellationToken ct = default); Task> ExecuteWorkflow(string workflow_name, object[] inputs, CancellationToken ct = default); Task> ExecuteWorkflow(string workflow_name, RuleParameter[] inputs, CancellationToken ct = default); Task ExecuteRule(string workflow_name, string rule_name, RuleParameter[] ruleParams, CancellationToken ct = default);