edu.cmu.sv.system_action.Executor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yoda Show documentation
Show all versions of yoda Show documentation
A library that allows rapid prototyping of dialog systems (language understanding, discourse modelling, dialog management, language generation).
package edu.cmu.sv.system_action;
/**
* Created by David Cohen on 12/21/14.
*
* Executor object is used to manage the execution of system actions.
* Sends feedback to dialog state tracker.
*
*/
public interface Executor {
void execute(SystemAction systemAction);
void executeUntracked(SystemAction systemAction);
}