23 lines
452 B
C#
23 lines
452 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tapeti.Flow.Default
|
|
{
|
|
internal class DelegateYieldPoint : IYieldPoint
|
|
{
|
|
private readonly Func<FlowContext, Task> onExecute;
|
|
|
|
|
|
public DelegateYieldPoint(Func<FlowContext, Task> onExecute)
|
|
{
|
|
this.onExecute = onExecute;
|
|
}
|
|
|
|
|
|
public async Task Execute(FlowContext context)
|
|
{
|
|
await onExecute(context);
|
|
}
|
|
}
|
|
}
|