Skip to content

Commit 86fbc48

Browse files
committed
Replace AsyncActionDriver<TArg, TRet> with ProcessedFlagEventArgs.
1 parent 08ad992 commit 86fbc48

13 files changed

+77
-419
lines changed

src/AsyncFiberWorks/Procedures/AsyncActionDriverOfTArgTRet.cs

-50
This file was deleted.

src/AsyncFiberWorks/Procedures/AsyncActionListOfTArgTRet.cs

-88
This file was deleted.

src/AsyncFiberWorks/Procedures/DefaultAsyncExecutorOfTArgTRet.cs src/AsyncFiberWorks/Procedures/AsyncProcessedFlagExecutor.cs

+8-9
Original file line numberDiff line numberDiff line change
@@ -5,29 +5,28 @@
55
namespace AsyncFiberWorks.Procedures
66
{
77
/// <summary>
8-
/// Default executor.
98
/// Call all actions in the order in which they are registered.
109
/// 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.
10+
/// If unprocessed, proceeds to the next action. If already processed, execution ends at that point.
1211
/// </summary>
13-
/// <typeparam name="TArg">Type of argument.</typeparam>
14-
public class DefaultAsyncExecutorOfTArgTRet<TArg> : IAsyncExecutor<TArg, bool>
12+
/// <typeparam name="T">Type of argument.</typeparam>
13+
public class AsyncProcessedFlagExecutor<T> : IAsyncExecutor<ProcessedFlagEventArgs<T>>
1514
{
1615
/// <summary>
1716
/// Executes actions.
1817
/// If any action returns true, execution stops at that point.
1918
/// </summary>
20-
/// <param name="arg">An argument.</param>
19+
/// <param name="eventArgs">An argument.</param>
2120
/// <param name="actions">A list of actions.</param>
2221
/// <returns>A task that waits for actions to be performed.</returns>
23-
public async Task Execute(TArg arg, IReadOnlyList<Func<TArg, Task<bool>>> actions)
22+
public async Task Execute(ProcessedFlagEventArgs<T> eventArgs, IReadOnlyList<Func<ProcessedFlagEventArgs<T>, Task>> actions)
2423
{
2524
if (actions != null)
2625
{
27-
foreach (var a in actions)
26+
foreach (var action in actions)
2827
{
29-
bool ack = await a(arg).ConfigureAwait(false);
30-
if (ack)
28+
await action(eventArgs).ConfigureAwait(false);
29+
if (eventArgs.Processed)
3130
{
3231
break;
3332
}

src/AsyncFiberWorks/Procedures/ReverseOrderAsyncExecutorOfTArgTRet.cs src/AsyncFiberWorks/Procedures/AsyncProcessedFlagReverseOrderExecutor.cs

+9-9
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,26 @@ namespace AsyncFiberWorks.Procedures
88
/// <summary>
99
/// Call the actions in the reverse order in which they were registered.
1010
/// 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.
1212
/// </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>>
1515
{
1616
/// <summary>
1717
/// 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.
1919
/// </summary>
20-
/// <param name="arg">An argument.</param>
20+
/// <param name="eventArgs">An argument.</param>
2121
/// <param name="actions">A list of actions.</param>
2222
/// <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)
2424
{
2525
if (actions != null)
2626
{
27-
foreach (var a in actions.Reverse())
27+
foreach (var action in actions.Reverse())
2828
{
29-
bool ack = await a(arg).ConfigureAwait(false);
30-
if (ack)
29+
await action(eventArgs).ConfigureAwait(false);
30+
if (eventArgs.Processed)
3131
{
3232
break;
3333
}

src/AsyncFiberWorks/Procedures/AsyncRegisterOfTArgTRet.cs

-157
This file was deleted.

src/AsyncFiberWorks/Procedures/IAsyncActionDriverOfTArgTRet.cs

-13
This file was deleted.

0 commit comments

Comments
 (0)