Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • See Synchronization
  • Pattern: "The convergence of two or more branches into a single subsequent branch such that the thread of control is passed to the subsequent branch when all input branches have been enabled."
  • Support: Not yet Fully supported. A Merge Instruction is required.Implementation: This
  • Implementation: JS7 - Fork / Join InstructionJS7 - ForkList / Join Instruction pattern occurs for Split Orders that are created from a Split Instruction. Split Orders from any connected branches can be merged into a single new Split Order.

Exclusive Choice

  • See Exclusive Choice
  • Pattern: "The divergence of a branch into two or more branches such that when the incoming branch is enabled, the thread of control is immediately passed to precisely one of the outgoing branches based on a mechanism that can select one of the outgoing branches.
    • This pattern implements an XOR choice, i.e. only one branch is processed.
  • Support: Fully supported.
  • Implementation: JS7 - If Instruction

...