]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/TripleIntProcedure.java
Multiple readers and variable optimization
[simantics/platform.git] / bundles / org.simantics.db.impl / src / org / simantics / db / impl / query / TripleIntProcedure.java
index 341dd48f9bf5b37a71e409e6ef7019389fa7477c..e5636717789e4bc1f254208a23a7f2737afcaa2b 100644 (file)
  *******************************************************************************/
 package org.simantics.db.impl.query;
 
+import org.simantics.db.exception.DatabaseException;
 import org.simantics.db.impl.graph.ReadGraphImpl;
 
 
 public interface TripleIntProcedure {
 
-    void execute(ReadGraphImpl graph, int s, int p, int o);
-    void finished(ReadGraphImpl graph);
-    void exception(ReadGraphImpl graph, Throwable throwable);
+    void execute(ReadGraphImpl graph, int s, int p, int o) throws DatabaseException ;
+    void finished(ReadGraphImpl graph) throws DatabaseException ;
+    void exception(ReadGraphImpl graph, Throwable throwable) throws DatabaseException;
     
 }