Class ParallelOperation

All Implemented Interfaces:
AutoCloseable, DurableFuture<ParallelResult>, ParallelDurableFuture

public class ParallelOperation extends ConcurrencyOperation<ParallelResult> implements ParallelDurableFuture
Manages parallel execution of multiple branches as child context operations.

Extends ConcurrencyOperation to provide parallel-specific behavior:

Context hierarchy:

 DurableContext (root)
   └── ParallelOperation context (ChildContextOperation with PARALLEL subtype)
         ├── Branch 1 context (ChildContextOperation with PARALLEL_BRANCH)
         ├── Branch 2 context (ChildContextOperation with PARALLEL_BRANCH)
         └── Branch N context (ChildContextOperation with PARALLEL_BRANCH)