]> 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;
2
3 public interface IEventCommand {
4     
5     public void setNext(IEventCommand command);
6     public IEventCommand getNext();    
7     public void handleCommand();
8     public void commandSuccess();
9     public void commandError(String errorMessage);
10
11 }