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=361875adb244d71e457afc56ab44ce206f200ae2;hb=9f0fd59be54719b1fe9322d8fd37e4950857308c;hpb=969bd23cab98a79ca9101af33334000879fb60c5 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 361875adb..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,20 +1,21 @@ -/******************************************************************************* - * Copyright (c) 2007, 2010 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 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html - * - * Contributors: - * VTT Technical Research Centre of Finland - initial API and implementation - *******************************************************************************/ -package org.simantics.db.impl.query; - -import org.simantics.db.impl.graph.ReadGraphImpl; - -public interface ThreadRunnable { - - void run(ReadGraphImpl graph); - -} +/******************************************************************************* + * 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 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * VTT Technical Research Centre of Finland - initial API and implementation + *******************************************************************************/ +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) throws DatabaseException; + +}