Package com.swiftmq.swiftlet.routing
Class Route
- java.lang.Object
-
- com.swiftmq.swiftlet.routing.Route
-
public abstract class Route extends java.lang.ObjectA route to a remote router.- Author:
- IIT GmbH, Bremen/Germany, Copyright (c) 2000-2002, All Rights Reserved
-
-
Constructor Summary
Constructors Constructor Description Route()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract java.lang.StringgetDestination()Returns the name of the remote router.abstract java.lang.StringgetOutboundQueueName()Returns the name of the routing queue.abstract booleanisActive()Returns whether this route is active or not.
-
-
-
Method Detail
-
getDestination
public abstract java.lang.String getDestination()
Returns the name of the remote router.- Returns:
- router name.
-
getOutboundQueueName
public abstract java.lang.String getOutboundQueueName()
Returns the name of the routing queue.- Returns:
- queue name.
-
isActive
public abstract boolean isActive()
Returns whether this route is active or not.- Returns:
- true/false.
-
-