com.cerner.ccl.j4ccl.adders.Adder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of j4ccl Show documentation
Show all versions of j4ccl Show documentation
A Java API for executing commands in a CCL prompt on a remote server.
package com.cerner.ccl.j4ccl.adders;
import com.cerner.ccl.j4ccl.CclExecutor;
/**
* Defines an object that adds a CCL action to an action queue.
*
* @author Joshua Hyde
* @see CclExecutor
*/
public interface Adder {
/**
* Commit a command to a command queue.
*
* @throws IllegalStateException
* If the adder is not yet in a state in which it can be added to the queue.
*/
void commit();
}