All Downloads are FREE. Search and download functionalities are using the official Maven repository.

enkan.system.Repl Maven / Gradle / Ivy

There is a newer version: 0.10.0
Show newest version
package enkan.system;

import java.util.concurrent.CompletableFuture;
import java.util.concurrent.Future;

/**
 * @author kawasima
 */
public interface Repl extends Runnable {
    void registerCommand(String name, SystemCommand command);
    void addBackgroundTask(String name, Runnable task);

    CompletableFuture getPort();
    Future getBackgorundTask(String name);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy