AndroidAPS/app/src/main/java/de/jotomo/ruffyscripter/commands/Command.java
Johannes Mockenhaupt e1b63a4a74
Command doc.
2017-07-26 15:50:07 +02:00

19 lines
598 B
Java

package de.jotomo.ruffyscripter.commands;
import java.util.List;
import de.jotomo.ruffyscripter.PumpState;
import de.jotomo.ruffyscripter.RuffyScripter;
/**
* Interface for all commands to be executed by the pump.
*
* Note on cammond methods and timing: a method shall wait before and after executing
* as necessary to not cause timing issues, so the caller can just call methods in
* sequence, letting the methods take care of waits.
*/
public interface Command {
CommandResult execute(RuffyScripter ruffyScripter, PumpState initialPumpState);
List<String> validateArguments();
}