| 1234567891011121314151617181920212223 |
- using SHJX.Service.Control.Extends;
- namespace SHJX.Service.Control.Pipeline.Nodes
- {
- public class UpdateStep : INode
- {
- #region Fields
- private static TaskExtend _taskExtend;
- #endregion
- public UpdateStep(TaskExtend taskExtend)
- {
- Name = nameof(UpdateStep);
- _taskExtend = taskExtend;
- }
- public override INode Invoke()
- {
- _taskExtend.UpdateStep(CurrentTask);
- return this;
- }
- }
- }
|