]> gerrit.simantics Code Review - simantics/district.git/blob - org.simantics.district.maps/src/org/simantics/maps/query/IQueryListener.java
Share some projects for Simantics District
[simantics/district.git] / org.simantics.district.maps / src / org / simantics / maps / query / IQueryListener.java
1 /*******************************************************************************
2  * Copyright (c) 2007 VTT Technical Research Centre of Finland and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  *     VTT Technical Research Centre of Finland - initial API and implementation
10  *******************************************************************************/
11 package org.simantics.maps.query;
12
13 /**
14  * @author Tuukka Lehtonen
15  *
16  * @param <S>
17  * @param <R>
18  */
19 public interface IQueryListener<S, R> {
20
21     void queryComplete(Query<S, R> job, R result);
22
23     void queryFailed(Query<S, R> job, Exception error);
24
25     void queryCanceled(Query<S, R> job);
26
27 }