Skip to main content
summaryrefslogtreecommitdiffstats
blob: 8b4c185f6f5deb858018b91b5a31e40c03894e5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*******************************************************************************
 * Copyright (c) 2004, 2007 Boeing.
 * 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:
 *     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();
}

Back to the top