]> gerrit.simantics Code Review - simantics/platform.git/blob - server/IEventCommand.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / server / IEventCommand.java
1 package org.simantics.document.server;\r
2 \r
3 public interface IEventCommand {\r
4     \r
5     public void setNext(IEventCommand command);\r
6     public IEventCommand getNext();    \r
7     public void handleCommand();\r
8     public void commandSuccess();\r
9     public void commandError(String errorMessage);\r
10 \r
11 }\r