本文整理汇总了C#中WorkflowContext.GetOutboundTransitions方法的典型用法代码示例。如果您正苦于以下问题:C# WorkflowContext.GetOutboundTransitions方法的具体用法?C# WorkflowContext.GetOutboundTransitions怎么用?C# WorkflowContext.GetOutboundTransitions使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WorkflowContext
的用法示例。
在下文中一共展示了WorkflowContext.GetOutboundTransitions方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: OnActivityExecuted
public override void OnActivityExecuted(WorkflowContext workflowContext, ActivityContext activityContext) {
// for blocking activities only
if (!activityContext.Activity.IsEvent) {
return;
}
// activity records pointing to the executed activity
var inboundActivities = workflowContext.GetInboundTransitions(activityContext.Record);
// if a direct target of a Branch Activity is executed, then suppress all other direct waiting activities
var parentBranchActivities = inboundActivities
.Where(x => x.SourceActivityRecord.Name == this.Name)
.Select(x => x.SourceActivityRecord)
.ToList();
if (parentBranchActivities.Any()) {
foreach (var parentBranch in parentBranchActivities) {
// remove all other waiting activities after the parent branch
var siblings = workflowContext.GetOutboundTransitions(parentBranch).Select(x => x.DestinationActivityRecord).ToList();
var awaitings = workflowContext.Record.AwaitingActivities.Where(x => siblings.Contains(x.ActivityRecord));
foreach (var awaiting in awaitings) {
workflowContext.Record.AwaitingActivities.Remove(awaiting);
}
}
}
}
示例2: OnActivityExecuted
public override void OnActivityExecuted(WorkflowContext workflowContext, ActivityContext activityContext) {
// activity records pointed by the executed activity
var outboundActivities = workflowContext.GetOutboundTransitions(activityContext.Record);
// if a direct target of a Branch Activity is executed, then suppress all other direct waiting activities
var childBranches = outboundActivities
.Where(x => x.DestinationActivityRecord.Name == this.Name)
.ToList();
foreach (var childBranch in childBranches) {
var branchesState = workflowContext.GetStateFor<string>(childBranch.DestinationActivityRecord, "Branches");
var branches = GetBranches(branchesState);
branches = branches.Union(new[] { GetTransitionKey(childBranch)}).Distinct();
workflowContext.SetStateFor(childBranch.DestinationActivityRecord, "Branches", String.Join(",", branches.ToArray()));
}
}