package org.argeo.api.init; import java.util.Map; import java.util.function.Consumer; /** Dynamically manages multiple runtimes within a single JVM. */ public interface RuntimeManager { public void startRuntime(String relPath, Consumer> configCallback); public void stopRuntime(String relPath, boolean async); }