Interface RoutingListener
-
- All Superinterfaces:
java.util.EventListener
- All Known Implementing Classes:
RoutingListenerAdapter
public interface RoutingListener extends java.util.EventListenerA listener interested in routing events.- Author:
- IIT GmbH, Bremen/Germany, Copyright (c) 2000-2002, All Rights Reserved
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddestinationActivated(RoutingEvent evt)Called when a destination (remote router) is activated.voiddestinationAdded(RoutingEvent evt)Called when a destination (remote router) is added.voiddestinationDeactivated(RoutingEvent evt)Called when a destination (remote router) is deactivated.voiddestinationRemoved(RoutingEvent evt)Called when a destination (remote router) is removed.
-
-
-
Method Detail
-
destinationAdded
void destinationAdded(RoutingEvent evt)
Called when a destination (remote router) is added.- Parameters:
evt- event.
-
destinationRemoved
void destinationRemoved(RoutingEvent evt)
Called when a destination (remote router) is removed.- Parameters:
evt- event.
-
destinationActivated
void destinationActivated(RoutingEvent evt)
Called when a destination (remote router) is activated.- Parameters:
evt- event.
-
destinationDeactivated
void destinationDeactivated(RoutingEvent evt)
Called when a destination (remote router) is deactivated.- Parameters:
evt- event.
-
-