]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db/src/org/simantics/db/DatabaseUserAgent.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / bundles / org.simantics.db / src / org / simantics / db / DatabaseUserAgent.java
1 package org.simantics.db;
2
3 import org.simantics.db.exception.InternalException;
4
5 public interface DatabaseUserAgent {
6     /**
7      * Tries to fix errors encountered during server startup.
8      *
9      * @param exception to fix before server can be started.
10      * @return true if successful.
11      */
12     public boolean handleStart(InternalException exception);
13
14     String getId();
15 }