Add new OP watcher

This commit is contained in:
Anthony Corbacho 2016-10-27 14:21:30 +09:00
parent 0d7f493657
commit 9d6c93f62a

View file

@ -145,9 +145,12 @@ public class Message {
INTERPRETER_BINDINGS, // [s-c] interpreter bindings
GET_INTERPRETER_SETTINGS, // [c-s] get interpreter settings
INTERPRETER_SETTINGS, // [s-c] interpreter settings
ERROR_INFO // [s-c] error information to be sent
ERROR_INFO, // [s-c] error information to be sent
WATCHER, // [s-c] TODO(anthonycorbacho): add description.
}
public static final Message EMPTY = new Message(null);
public OP op;
public Map<String, Object> data = new HashMap<>();
public String ticket = "anonymous";