Skip to content

Commit 653fa00

Browse files
committed
Switched to named tuple
1 parent 8361a0f commit 653fa00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/WorkflowCore/Services/WorkflowRegistry.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace WorkflowCore.Services
1111
public class WorkflowRegistry : IWorkflowRegistry
1212
{
1313
private readonly IServiceProvider _serviceProvider;
14-
private readonly BlockingCollection<(string, int, WorkflowDefinition)> _registry = new BlockingCollection<(string, int, WorkflowDefinition)>();
14+
private readonly BlockingCollection<(string workfloId, int version, WorkflowDefinition definition)> _registry = new BlockingCollection<(string, int, WorkflowDefinition)>();
1515

1616
public WorkflowRegistry(IServiceProvider serviceProvider)
1717
{

0 commit comments

Comments
 (0)