Class RoutingListenerAdapter
- java.lang.Object
-
- com.swiftmq.swiftlet.routing.event.RoutingListenerAdapter
-
- All Implemented Interfaces:
RoutingListener,java.util.EventListener
public class RoutingListenerAdapter extends java.lang.Object implements RoutingListener
An adapter class for RoutingListener- Author:
- IIT GmbH, Bremen/Germany, Copyright (c) 2000-2002, All Rights Reserved
- See Also:
SwiftletManager
-
-
Constructor Summary
Constructors Constructor Description RoutingListenerAdapter()
-
Method Summary
All Methods Instance Methods Concrete 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
public void destinationAdded(RoutingEvent evt)
Description copied from interface:RoutingListenerCalled when a destination (remote router) is added.- Specified by:
destinationAddedin interfaceRoutingListener- Parameters:
evt- event.
-
destinationRemoved
public void destinationRemoved(RoutingEvent evt)
Description copied from interface:RoutingListenerCalled when a destination (remote router) is removed.- Specified by:
destinationRemovedin interfaceRoutingListener- Parameters:
evt- event.
-
destinationActivated
public void destinationActivated(RoutingEvent evt)
Description copied from interface:RoutingListenerCalled when a destination (remote router) is activated.- Specified by:
destinationActivatedin interfaceRoutingListener- Parameters:
evt- event.
-
destinationDeactivated
public void destinationDeactivated(RoutingEvent evt)
Description copied from interface:RoutingListenerCalled when a destination (remote router) is deactivated.- Specified by:
destinationDeactivatedin interfaceRoutingListener- Parameters:
evt- event.
-
-