Flowchart – Specify That a Spawned Process Returns to a Parent

flowchart

I am using yED to build an application flow-chart, and I can't figure out a 'nice' looking way of representing that a GUI's call to spawn a process loops back to the GUI process once it terminates, other than drawing another arrow to the GUI process.

Is there a better way of presenting a process looping back to its parent on return/exit other than drawing another arrow back to the parent?

Best Answer

In an ordinary flowchart (not a UML diagram), any box that represents some other process, subroutine or method (returning back to the caller) would be represented by a box having double-vertical lines instead of single, the Predefined Process Symbol.

enter image description here

Return to the calling entity is indicated by flow control passing through the box, and out the other side, just as it would with any other non-terminating shape.

Related Topic