Package com.swiftmq.mgmt
Interface EntityWatchListener
public interface EntityWatchListener
A listener to be register at Entities and to get informed about additions and
removals. Note that this listener is intended for notification only. There is
no intervention possible to prevent additions/removals.
- Author:
- IIT GmbH, Bremen/Germany, Copyright (c) 2000-2002, All Rights Reserved
-
Method Summary
Modifier and TypeMethodDescriptionvoid
entityAdded
(Entity parent, Entity entity) Called after the entity has been added.void
entityRemoved
(Entity parent, Entity entity) Called after the entity has been removed.
-
Method Details
-
entityAdded
Called after the entity has been added.- Parameters:
parent
- parent.entity
- new entity.
-
entityRemoved
Called after the entity has been removed.- Parameters:
parent
- parent.entity
- removed entity.
-