本文介绍了UnConstructed消息并行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在进入平行形状之前构建了一条消息Msg1。

I constructed a message Msg1 before entering into Parallel shape.

第一分支:我是构建Msg2  ;使用"消息分配";来自Msg1(某些属性) 

1st Branch: I am Constructing Msg2 using "Message Assignment" from Msg1(Some properties) 

第2个分支:我正在使用"消息分配"构建Msg3 来自Msg1(某些属性) 

2nd Branch: I am Constructing Msg3 using "Message Assignment" from Msg1(Some properties) 

我希望,我不需要使用Synchronized =" True"并行,因为我没有使用Msg1或任何其他常见数据。

I hope, I dont need to use Synchronized = "True" on parallel, as I am not chanign the Msg1 or any other common data.

当我编译项目时,它报告错误"使用未构造的消息Msg1" 

When I compile the project it reports error "Using of Unconstructed Message Msg1" 

提前谢谢

Venky

推荐答案

在进入平行形状之前,还构造了Msg2和Msg3。

Msg2 and Msg3 are also constructed before entering into Parallel shape.

当前错误是针对Msg1。

The current Error is for Msg1.

"不允许使用未构造的消息Msg1 .."

"Use of Unconstructed message Msg1 is not allowed.."

谢谢


这篇关于UnConstructed消息并行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 08:17