in src/main/java/com/spotify/fmt/ForkingExecutor.java [126:132]
<T> T execute(SerializableCallable<T> f) throws IOException {
try (final Execution<T> execution = new Execution<>(executionClassPath(), f)) {
executions.add(execution);
execution.start();
return execution.waitFor();
}
}