X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.db.impl%2Fsrc%2Forg%2Fsimantics%2Fdb%2Fimpl%2Fquery%2FThreadRunnable.java;h=60dc593bf6db1498fc107d307d1b7ad16875693d;hp=779495484cdcc87a8620403970f8eba39cbe985f;hb=0d9b90834ce56b292c00b1a39850ed842c3e4d42;hpb=e5db6157fd8722c946613d4e46d7aaf6bfa92609 diff --git a/bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/ThreadRunnable.java b/bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/ThreadRunnable.java index 779495484..60dc593bf 100644 --- a/bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/ThreadRunnable.java +++ b/bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/ThreadRunnable.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Association for Decentralized Information Management + * Copyright (c) 2007, 2018 Association for Decentralized Information Management * in Industry THTH ry. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 @@ -11,10 +11,11 @@ *******************************************************************************/ package org.simantics.db.impl.query; +import org.simantics.db.exception.DatabaseException; import org.simantics.db.impl.graph.ReadGraphImpl; public interface ThreadRunnable { - void run(ReadGraphImpl graph); - + void run(ReadGraphImpl graph) throws DatabaseException; + }