blob: 710e23c654a7892d2eda5ef59de106e46c906053 [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 listeners = new ListenerList();
protected void fireObjectTerminated(final Exception e) {
Thread thread = new Thread(() -> {
Object[] list = listeners.getListeners();
for (int i = 0; i < list.length; ++i) {
((IDbgpTerminationListener) list[i])
.objectTerminated(DbgpTermination.this, e);
}
});
thread.start();
}
@Override
public void addTerminationListener(IDbgpTerminationListener listener) {
listeners.add(listener);
}
@Override
public void removeTerminationListener(IDbgpTerminationListener listener) {
listeners.remove(listener);
}
}