]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.common/src/org/simantics/db/common/procedure/wrapper/NoneToAsyncMultiListener.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.db.common / src / org / simantics / db / common / procedure / wrapper / NoneToAsyncMultiListener.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.db.common.procedure.wrapper;\r
13 \r
14 import org.simantics.db.AsyncReadGraph;\r
15 import org.simantics.db.procedure.AsyncMultiListener;\r
16 import org.simantics.db.procedure.MultiListener;\r
17 \r
18 public class NoneToAsyncMultiListener<T> implements AsyncMultiListener<T> {\r
19 \r
20         final private MultiListener<T> procedure;\r
21 \r
22         public NoneToAsyncMultiListener(MultiListener<T> procedure) {\r
23                 this.procedure = procedure;\r
24         }\r
25         \r
26         @Override\r
27         public void execute(AsyncReadGraph graph, final T result) {\r
28             procedure.execute(result);\r
29         }\r
30 \r
31         @Override\r
32         public void finished(AsyncReadGraph graph) {\r
33             procedure.finished();\r
34         }\r
35 \r
36         @Override\r
37         public void exception(AsyncReadGraph graph, Throwable t) {\r
38             procedure.exception(t);\r
39         }\r
40 \r
41     @Override\r
42     public boolean isDisposed() {\r
43         return procedure.isDisposed();\r
44     }\r
45 \r
46     @Override\r
47     public String toString() {\r
48         return "NoneToAsyncMultiListener -> " + procedure;\r
49    }\r
50     \r
51 }\r