16 lines
283 B
C#
16 lines
283 B
C#
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Tapeti.Flow.Default
|
|||
|
{
|
|||
|
internal interface IStateYieldPoint : IYieldPoint
|
|||
|
{
|
|||
|
bool StoreState { get; }
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
internal interface IExecutableYieldPoint : IYieldPoint
|
|||
|
{
|
|||
|
Task Execute(FlowContext context);
|
|||
|
}
|
|||
|
}
|