From e50934cd05a1e1fa5396050c6d85823c724b9c9b Mon Sep 17 00:00:00 2001 From: Aaron Sulwer Date: Mon, 24 Jun 2024 12:48:43 -0700 Subject: [PATCH] removed warning in interface --- src/RulesEngine/Interfaces/IRulesEngine.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);