Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8f2f0ae02ff7e222b71a86f3f52c967e8316891c (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
30
31
32
33
34
35
36
37
/*******************************************************************************
 * Copyright (c) 1997, 2008 by ProSyst Software GmbH
 * http://www.prosyst.com
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *    ProSyst Software GmbH - initial API and implementation
 *******************************************************************************/
package org.eclipse.equinox.internal.io;

/**
 * Provides methods for registering listeners for receiving events from a
 * connection (that implements this interface).
 * 
 * @author Pavlin Dobrev
 * @version 1.0
 */

public interface ConnectionNotifier {
	/**
	 * Adds the given listener to the set of listeners that will be notified
	 * when the connection is created or closed.
	 */
	public void addConnectionListener(ConnectionListener l);

	/**
	 * Removes the given listener from the set of listeners that will be
	 * notified when the connection is created or closed.
	 */
	public void removeConnectionListener(ConnectionListener l);
}

Back to the top