prepareActivate( $execution, $threadId ); parent::activate( $execution, $activatedFrom, $execution->getParentThreadId( $threadId ) ); } /** * Executes this node. * * @param ezcWorkflowExecution $execution * @return boolean true when the node finished execution, * and false otherwise * @ignore */ public function execute( ezcWorkflowExecution $execution ) { if ( count( $this->state['threads'] ) == $this->state['siblings'] ) { return $this->doMerge( $execution ); } else { return false; } } } ?>