本文整理汇总了C#中ActivityExecutor.ScheduleItem方法的典型用法代码示例。如果您正苦于以下问题:C# ActivityExecutor.ScheduleItem方法的具体用法?C# ActivityExecutor.ScheduleItem怎么用?C# ActivityExecutor.ScheduleItem使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ActivityExecutor
的用法示例。
在下文中一共展示了ActivityExecutor.ScheduleItem方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: EvaluateNextArgument
private void EvaluateNextArgument(ActivityExecutor executor)
{
if (executor.HasPendingTrackingRecords && this.nextArgumentWorkItem.CanExecuteUserCode())
{
// Need to schedule a separate work item so we flush tracking before we continue.
// This ensures consistent ordering of tracking output and user code.
executor.ScheduleItem(this.nextArgumentWorkItem);
}
else
{
executor.ExecuteSynchronousWorkItem(this.nextArgumentWorkItem);
}
}
示例2: Execute
/// <summary>
/// Execute the work item
/// </summary>
/// <param name="executor">The executor</param>
/// <param name="bookmarkManager">The bookmark manager</param>
/// <returns>True to continue executing work items, false to yield the thread</returns>
public override bool Execute(ActivityExecutor executor, BookmarkManager bookmarkManager)
{
ActivityInfo activityInfo = null;
this.TrackExecuting(executor, ref activityInfo);
try
{
executor.ExecuteInResolutionContextUntyped(this.ActivityInstance, this.expressionActivity, this.instanceId, this.resultLocation);
}
catch (Exception e)
{
if (Fx.IsFatal(e))
{
throw;
}
this.TrackFaulted(executor, ref activityInfo);
if (this.nextArgumentWorkItem != null)
{
executor.ScheduleItem(this.nextArgumentWorkItem);
}
executor.ScheduleExpressionFaultPropagation(this.expressionActivity, this.instanceId, this.ActivityInstance, e);
return true;
}
finally
{
if (this.ActivityInstance.InstanceMap != null)
{
this.ActivityInstance.InstanceMap.RemoveEntry(this);
}
}
this.TrackClosed(executor, ref activityInfo);
if (this.nextArgumentWorkItem != null)
{
this.EvaluateNextArgument(executor);
}
return true;
}