Package org.eclipse.ecf.core
Interface IContainerManagerListener
public interface IContainerManagerListener
Container manager listener. Instances of this interface may be registered via
calls to
IContainerManager.addListener(IContainerManagerListener)
.
When subsequent additions to the IContainerManager
occur, the
containerAdded(IContainer)
method will be called. When container
removals occur, containerRemoved(IContainer)
. Note that these
methods will be called by arbitrary threads.-
Method Summary
Modifier and TypeMethodDescriptionvoid
containerAdded
(IContainer container) Container added to the implementing IContainerManager.void
containerRemoved
(IContainer container) Container removed from the implementing IContainerManager.
-
Method Details
-
containerAdded
Container added to the implementing IContainerManager.- Parameters:
container
- theIContainer
added. Will not benull
.
-
containerRemoved
Container removed from the implementing IContainerManager.- Parameters:
container
- theIContainer
removed. Will not benull
.
-