]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db/src/org/simantics/db/MonitorHandler.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / bundles / org.simantics.db / src / org / simantics / db / MonitorHandler.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.db;
13
14 import org.simantics.db.service.SessionMonitorSupport;
15
16 /**
17  * An interface provided by clients to {@link SessionMonitorSupport} to be able
18  * to receive notifications about changes in {@link Session} state variables.
19  * 
20  * <p>
21  * The handler does not support specific notifications, it is only a general way
22  * of saying to clients that something has changed.
23  * 
24  * @see MonitorContext
25  * @see SessionMonitorSupport
26  * @see SessionVariables
27  */
28 public interface MonitorHandler {
29
30     /**
31      * Some variables have changed in the monitored session.
32      * 
33      * @param c a context that can be used to access the variables
34      */
35     void valuesChanged(MonitorContext c);
36
37 }