]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scenegraph.profile/src/org/simantics/scenegraph/profile/Group.java
Multiple reader thread support for db client
[simantics/platform.git] / bundles / org.simantics.scenegraph.profile / src / org / simantics / scenegraph / profile / Group.java
index 8d1a111244aea56b2caf6a63d0629882870b7411..27d6a0dbcb79331a529d962970f7241c186f1411 100644 (file)
@@ -13,6 +13,7 @@ package org.simantics.scenegraph.profile;
 
 import org.simantics.db.RequestProcessor;
 import org.simantics.db.Resource;
+import org.simantics.db.exception.DatabaseException;
 import org.simantics.db.procedure.SetListener;
 
 
@@ -37,6 +38,6 @@ public interface Group {
      *        objects. Usually one just delegates normal database listener
      *        events to this listener.
      */
-    void trackItems(RequestProcessor processor, Resource runtimeDiagram, SetListener<Resource> listener);
+    void trackItems(RequestProcessor processor, Resource runtimeDiagram, SetListener<Resource> listener) throws DatabaseException;
 
 }