0

双方向の void 操作を公開するようにワークフローを構成するにはどうすればよいですか?

そのため、
1) 操作が完了するまで呼び出し元がブロックされ、
2) 呼び出し元に例外 (障害) が通知されます。

Receive+の使用SendReplyは扱いにくいようです。1 つは、ワークフロー図に不要なノイズを追加することです。

4

1 に答える 1

1

The Receive and SendReply pair is exactly how it is done. I agree that it adds a lot of unwanted complexity to you workflow. The best way to avoid that is to create a separate composite activity and wrap the Receive and SendReply in there. That way you see the simple composite activity on your workflow.

于 2012-01-18T08:10:11.577 に答える