@@ -49,7 +49,7 @@ protected async Task MessagesSunshineScenario(Task<IFunctionStore> functionStore
4949 flowsManager
5050 ) ;
5151
52- flowsManager . AddFlow ( workflow . StoredId , ( ) => { } , queueManager , flowTimeouts ) ;
52+ flowsManager . AddFlow ( workflow . StoredId , queueManager , flowTimeouts ) ;
5353 queueClient = await queueManager . CreateQueueClient ( ) ;
5454 var message = await queueClient . Pull < string > ( workflow , workflow . Effect . CreateNextImplicitId ( ) ) ;
5555
@@ -101,7 +101,7 @@ protected async Task QueueClientReturnsNullAfterTimeout(Task<IFunctionStore> fun
101101 flowsManager
102102 ) ;
103103
104- flowsManager . AddFlow ( workflow . StoredId , ( ) => { } , queueManager , flowTimeouts ) ;
104+ flowsManager . AddFlow ( workflow . StoredId , queueManager , flowTimeouts ) ;
105105 var queueClient = await queueManager . CreateQueueClient ( ) ;
106106 var message = await queueClient . Pull < string > ( workflow , workflow . Effect . CreateNextImplicitId ( ) , TimeSpan . FromMilliseconds ( 100 ) ) ;
107107
@@ -148,7 +148,7 @@ protected async Task MessagesFirstOfTypesReturnsNoneForFirstOfTypesOnTimeout(Tas
148148 flowsManager
149149 ) ;
150150
151- flowsManager . AddFlow ( workflow . StoredId , ( ) => { } , queueManager , flowTimeouts ) ;
151+ flowsManager . AddFlow ( workflow . StoredId , queueManager , flowTimeouts ) ;
152152 var queueClient = await queueManager . CreateQueueClient ( ) ;
153153 var message = await queueClient . Pull < object > (
154154 workflow ,
@@ -200,7 +200,7 @@ protected async Task MessagesFirstOfTypesReturnsFirstForFirstOfTypesOnFirst(Task
200200 flowsManager
201201 ) ;
202202
203- flowsManager . AddFlow ( workflow . StoredId , ( ) => { } , queueManager , flowTimeouts ) ;
203+ flowsManager . AddFlow ( workflow . StoredId , queueManager , flowTimeouts ) ;
204204 var queueClient = await queueManager . CreateQueueClient ( ) ;
205205 var message = await queueClient . Pull < object > (
206206 workflow ,
@@ -253,7 +253,7 @@ protected async Task MessagesFirstOfTypesReturnsSecondForFirstOfTypesOnSecond(Ta
253253 flowsManager
254254 ) ;
255255
256- flowsManager . AddFlow ( workflow . StoredId , ( ) => { } , queueManager , flowTimeouts ) ;
256+ flowsManager . AddFlow ( workflow . StoredId , queueManager , flowTimeouts ) ;
257257 var queueClient = await queueManager . CreateQueueClient ( ) ;
258258 var message = await queueClient . Pull < string > (
259259 workflow ,
@@ -307,7 +307,7 @@ protected async Task SecondEventWithExistingIdempotencyKeyIsIgnored(Task<IFuncti
307307 flowsManager
308308 ) ;
309309
310- flowsManager . AddFlow ( workflow . StoredId , ( ) => { } , queueManager , flowTimeouts ) ;
310+ flowsManager . AddFlow ( workflow . StoredId , queueManager , flowTimeouts ) ;
311311 var queueClient = await queueManager . CreateQueueClient ( ) ;
312312 var message1 = await queueClient . Pull < string > ( workflow , workflow . Effect . CreateNextImplicitId ( ) ) ;
313313 var message2 = await queueClient . Pull < string > ( workflow , workflow . Effect . CreateNextImplicitId ( ) ) ;
@@ -363,7 +363,7 @@ protected async Task QueueClientCanPullMultipleMessages(Task<IFunctionStore> fun
363363 flowsManager
364364 ) ;
365365
366- flowsManager . AddFlow ( workflow . StoredId , ( ) => { } , queueManager , flowTimeouts ) ;
366+ flowsManager . AddFlow ( workflow . StoredId , queueManager , flowTimeouts ) ;
367367 var queueClient = await queueManager . CreateQueueClient ( ) ;
368368
369369 var message1 = await queueClient . Pull < string > ( workflow , workflow . Effect . CreateNextImplicitId ( ) ) ;
@@ -417,7 +417,7 @@ async Task (workflow) =>
417417 flowsManager
418418 ) ;
419419
420- flowsManager . AddFlow ( workflow . StoredId , ( ) => { } , queueManager , flowTimeouts ) ;
420+ flowsManager . AddFlow ( workflow . StoredId , queueManager , flowTimeouts ) ;
421421 var queueClient = await queueManager . CreateQueueClient ( ) ;
422422 lock ( queueClients )
423423 queueClients [ workflow . FlowId . Instance . Value ] = queueClient ;
@@ -483,7 +483,7 @@ async Task (workflow) =>
483483 flowsManager
484484 ) ;
485485
486- flowsManager . AddFlow ( workflow . StoredId , ( ) => { } , queueManager , flowTimeouts ) ;
486+ flowsManager . AddFlow ( workflow . StoredId , queueManager , flowTimeouts ) ;
487487 var queueClient = await queueManager . CreateQueueClient ( ) ;
488488
489489 while ( true )
@@ -551,7 +551,7 @@ async Task (workflow) =>
551551 flowsManager
552552 ) ;
553553
554- flowsManager . AddFlow ( workflow . StoredId , ( ) => { } , queueManager , flowTimeouts ) ;
554+ flowsManager . AddFlow ( workflow . StoredId , queueManager , flowTimeouts ) ;
555555 var queueClient = await queueManager . CreateQueueClient ( ) ;
556556
557557 for ( var i = 0 ; i < 10 ; i ++ )
@@ -581,7 +581,7 @@ async Task (workflow) =>
581581 flowsManager
582582 ) ;
583583
584- flowsManager . AddFlow ( workflow . StoredId , ( ) => { } , queueManager , flowTimeouts ) ;
584+ flowsManager . AddFlow ( workflow . StoredId , queueManager , flowTimeouts ) ;
585585 var queueClient = await queueManager . CreateQueueClient ( ) ;
586586
587587 for ( var i = 0 ; i < 10 ; i ++ )
0 commit comments