blob: 7129744d11eb748a3e690059be7183075383c59f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2017 IBM Corporation and others.
* 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
*
*******************************************************************************/
package org.eclipse.dltk.dbgp.internal;
import org.eclipse.core.runtime.ListenerList;
public abstract class DbgpTermination implements IDbgpTermination {
private final ListenerList<IDbgpTerminationListener> listeners = new ListenerList<>();
protected void fireObjectTerminated(final Exception e) {
Thread thread = new Thread(() -> {
for (IDbgpTerminationListener listener : listeners) {
listener.objectTerminated(DbgpTermination.this, e);
}
});
thread.start();
}
@Override
public void addTerminationListener(IDbgpTerminationListener listener) {
listeners.add(listener);
}
@Override
public void removeTerminationListener(IDbgpTerminationListener listener) {
listeners.remove(listener);
}
}