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

io.github.dbstarll.utils.lang.launcher.Task Maven / Gradle / Ivy

The newest version!
package io.github.dbstarll.utils.lang.launcher;

public interface Task {
    /**
     * Execute the command with the given arguments.
     *
     * @param args command specific arguments.
     * @return exit code.
     * @throws Throwable Exception
     */
    int run(String... args) throws Throwable;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy