Skip to content

Commit

Permalink
removed warning in interface
Browse files Browse the repository at this point in the history
  • Loading branch information
asulwer committed Jun 24, 2024
1 parent 08fc93c commit e50934c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/RulesEngine/Interfaces/IRulesEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ namespace RulesEngine.Interfaces
{
public interface IRulesEngine
{
IAsyncEnumerable<List<RuleResultTree>> ExecuteAllWorkflows(object[] inputs, [EnumeratorCancellation] CancellationToken ct = default);
IAsyncEnumerable<List<RuleResultTree>> ExecuteAllWorkflows(RuleParameter[] inputs, [EnumeratorCancellation] CancellationToken ct = default);
IAsyncEnumerable<List<RuleResultTree>> ExecuteAllWorkflows(object[] inputs, CancellationToken ct = default);
IAsyncEnumerable<List<RuleResultTree>> ExecuteAllWorkflows(RuleParameter[] inputs, CancellationToken ct = default);
Task<List<RuleResultTree>> ExecuteWorkflow(string workflow_name, object[] inputs, CancellationToken ct = default);
Task<List<RuleResultTree>> ExecuteWorkflow(string workflow_name, RuleParameter[] inputs, CancellationToken ct = default);
Task<RuleResultTree> ExecuteRule(string workflow_name, string rule_name, RuleParameter[] ruleParams, CancellationToken ct = default);
Expand Down

0 comments on commit e50934c

Please sign in to comment.