blob: 3f8beaa0411c0d019d58711218f10338ca0104d8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004-2008 Gabor Bergmann and Daniel Varro
* 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:
* Gabor Bergmann - initial API and implementation
*******************************************************************************/
package org.eclipse.viatra2.gtasm.patternmatcher.incremental.rete.boundary;
/**
* For objects that connect a RETE implementation to the Viatra framework.
*
* @author Gabor Bergmann
*
*/
public interface Disconnectable {
/**
* Disconnects this rete engine component from the viatra framework.
* Disconnecting enables the garbage collection mechanisms to dispose of the
* rete network.
*/
void disconnect();
}