Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f2277ea85f12fcdb2835c704df2bacb3c0168497 (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
/*******************************************************************************
 * Copyright (c) 2004 Composent, Inc., Peter Nehrer, Boris Bokowski. 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: Composent, Inc. - initial API and implementation
 ******************************************************************************/
package org.eclipse.ecf.datashare.events;

import org.eclipse.ecf.core.identity.ID;

/**
 * Event delivered to the IChannelListener when the parent container of a channel disconnects.
 */
public interface IChannelDisconnectEvent extends IChannelEvent {
	/**
	 * Get ID of IContainer that has disconnected from channel.
	 * 
	 * @return ID of IContainer that has disconnected. Will not be <code>null</code>.
	 */
	public ID getTargetID();
}

Back to the top