com.dooapp.gaedo.prevalence.space.Command Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gaedo-prevalence Show documentation
Show all versions of gaedo-prevalence Show documentation
A gaedo-inspired prevalence layer and the associated service, for making the most gaedo-efficient use of that layer
package com.dooapp.gaedo.prevalence.space;
import java.io.Serializable;
/**
* Define a command to be executed
* @author ndx
*
* @param
*/
public interface Command {
/**
* Execute command on the given space.
* May throw a CommandExecutionException
* @param storage
* @return
*/
public CommandReturnType execute(StorageSpace storage);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy