@@ -8,26 +8,26 @@ namespace AsyncFiberWorks.Procedures
8
8
/// <summary>
9
9
/// Call the actions in the reverse order in which they were registered.
10
10
/// Wait for the calls to complete one at a time before proceeding.
11
- /// If the return value is false, move on to the next action. If true , execution ends at that point.
11
+ /// If unprocessed, proceeds to the next action. If already processed , execution ends at that point.
12
12
/// </summary>
13
- /// <typeparam name="TArg "></typeparam>
14
- public class ReverseOrderAsyncExecutorOfTArgTRet < TArg > : IAsyncExecutor < TArg , bool >
13
+ /// <typeparam name="T "></typeparam>
14
+ public class AsyncProcessedFlagReverseOrderExecutor < T > : IAsyncExecutor < ProcessedFlagEventArgs < T > >
15
15
{
16
16
/// <summary>
17
17
/// Call the actions in the reverse order in which they were registered.
18
- /// If any action returns true , execution stops at that point.
18
+ /// If any action is processed , execution stops at that point.
19
19
/// </summary>
20
- /// <param name="arg ">An argument.</param>
20
+ /// <param name="eventArgs ">An argument.</param>
21
21
/// <param name="actions">A list of actions.</param>
22
22
/// <returns>A task that waits for actions to be performed.</returns>
23
- public async Task Execute ( TArg arg , IReadOnlyList < Func < TArg , Task < bool > > > actions )
23
+ public async Task Execute ( ProcessedFlagEventArgs < T > eventArgs , IReadOnlyList < Func < ProcessedFlagEventArgs < T > , Task > > actions )
24
24
{
25
25
if ( actions != null )
26
26
{
27
- foreach ( var a in actions . Reverse ( ) )
27
+ foreach ( var action in actions . Reverse ( ) )
28
28
{
29
- bool ack = await a ( arg ) . ConfigureAwait ( false ) ;
30
- if ( ack )
29
+ await action ( eventArgs ) . ConfigureAwait ( false ) ;
30
+ if ( eventArgs . Processed )
31
31
{
32
32
break ;
33
33
}
0 commit comments