重命名可跳过节点,可重入节点与可跳出节点
This commit is contained in:
@@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Deedy.Activity
|
||||
{
|
||||
public interface ISkipable
|
||||
public interface IPassable
|
||||
{
|
||||
bool IsBypassing { get; set; }
|
||||
}
|
||||
@@ -8,6 +8,6 @@ namespace Deedy.Activity
|
||||
{
|
||||
public interface IReentrant : ITerminate
|
||||
{
|
||||
public bool IsContinue { get; set; }
|
||||
public bool IsReentering { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Deedy.Activity
|
||||
{
|
||||
public interface ITerminate : ISkipable
|
||||
public interface ITerminate : IPassable
|
||||
{
|
||||
bool IsBreaking { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user