List of usage examples for java.util.concurrent ForkJoinTask invokeAll
public static void invokeAll(ForkJoinTask<?> t1, ForkJoinTask<?> t2)
From source file:net.shipilev.fjptrace.tasks.RenderTaskExecTimeTask.java
@Override protected void compute() { ForkJoinTask.invokeAll( new TaskStatsGraphTask(events, taskStatus.getSelf(), prefix + "-exectimeExclusive.png", "Task execution time (exclusive)", "Time to execute, sec, LOG scale"), new TaskStatsGraphTask(events, taskStatus.getTotal(), prefix + "-exectimeInclusive.png", "Task execution times (inclusive, including subtasks)", "Time to execute, sec, LOG scale")); }