This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
H ~~~~ -> | |
A -> B -> | |
C -> D | |
H: high priority long task, should start in parallel to A | |
A: first task | |
B: should start once A is finished | |
C: should start once B & H is finished | |
D: should start once C is finished |