blob: e497c73a6d0f0d78b1d5d49de1b4b92086600ac0 [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2004, 2007 Boeing
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Boeing - initial API and implementation
**********************************************************************/
package org.eclipse.osee.connection.service;
import java.util.Collection;
/**
* @author Ken J. Aguilar
*/
public interface IConnectorListener {
void onConnectorsAdded(Collection<IServiceConnector> connectors);
void onConnectorRemoved(IServiceConnector connector);
/**
* this method will be called when the connect service has been commanded to stop but before it is actually stopped.
* this gives clients a chance to cleanup however, clients should not call any methods on the service.
*/
void onConnectionServiceStopped();
}