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

org.yamcs.commanding.CommandReleaser Maven / Gradle / Ivy

There is a newer version: 5.10.7
Show newest version
package org.yamcs.commanding;

import org.yamcs.ProcessorService;
import org.yamcs.cmdhistory.CommandHistoryPublisher;

/**
 * This is responsible for "releasing" a command.
 * 
 */
public interface CommandReleaser extends ProcessorService {
    /**
     * release a command.
     * 
     * @param preparedCommand
     */
    void releaseCommand(PreparedCommand preparedCommand);

    /**
     * the command releaser has to add the command to the history when it is released.
     * 
     * @param commandHistory
     */
    void setCommandHistory(CommandHistoryPublisher commandHistory);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy