I am trying to control the processing order of pallets between two Process Executors in Visual Components.
In my layout, there are two nodes (A and B), and both nodes pick pallets for processing.
Each pallet has a custom property calledLabel, which indicates the type of pallet (values:1, 2, or 3).
What I want to achieve is aglobal processing order of 3 → 2 → 1shared between both nodes.
For example:
-
IfNode A processes a pallet with Label = 3, and
-
Node B processes a pallet with Label = 2,
-
then thenext pallet to be processed (by either node)should beLabel = 1.
In other words, the sequence3 → 2 → 1无论哪个节点处理托盘,都应被两个节点共同遵循。
目前,我在每个进程执行器中使用分配变量来管理序列,但我找不到方法在两个执行器之间共享或同步这个值。
所以我的问题是:
-
有没有办法在两个进程执行器之间实时共享变量或属性?
-
如果没有,那么实现这种共享处理序列的推荐方式是什么?
任何建议或示例将不胜感激。





微信扫一扫,打赏作者吧~