uk.co.codera.lang.concurrent.CommandExecutor Maven / Gradle / Ivy
package uk.co.codera.lang.concurrent;
/**
*
* Indicates that this task wraps a command and will execute the command when it
* is invoked.
*
*
* @author andystewart
*/
public interface CommandExecutor extends Task {
/**
* Returns the underlying command the task will execute when invoked.
*
* @return the underlying command.
*/
Command getCommand();
}