Package org.onosproject.net.mcast
Class McastRouteInfo
- java.lang.Object
-
- org.onosproject.net.mcast.McastRouteInfo
-
@Deprecated public final class McastRouteInfo extends Object
Deprecated.in 1.11 ("Loon") release. To be moved into an app.Multicast information as stored in the store.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
isComplete()
Deprecated.static McastRouteInfo
mcastRouteInfo(McastRoute route)
Deprecated.static McastRouteInfo
mcastRouteInfo(McastRoute route, Set<ConnectPoint> sinks, ConnectPoint source)
Deprecated.static McastRouteInfo
mcastRouteInfo(McastRoute route, ConnectPoint sink, ConnectPoint source)
Deprecated.McastRoute
route()
Deprecated.The route associated with this multicast information.Optional<ConnectPoint>
sink()
Deprecated.The sink which has been removed or added.Set<ConnectPoint>
sinks()
Deprecated.Returns the set of sinks associated with this route.Optional<ConnectPoint>
source()
Deprecated.The source which has been removed or added.String
toString()
Deprecated.
-
-
-
Method Detail
-
mcastRouteInfo
public static McastRouteInfo mcastRouteInfo(McastRoute route)
Deprecated.
-
mcastRouteInfo
public static McastRouteInfo mcastRouteInfo(McastRoute route, ConnectPoint sink, ConnectPoint source)
Deprecated.
-
mcastRouteInfo
public static McastRouteInfo mcastRouteInfo(McastRoute route, Set<ConnectPoint> sinks, ConnectPoint source)
Deprecated.
-
isComplete
public boolean isComplete()
Deprecated.
-
route
public McastRoute route()
Deprecated.The route associated with this multicast information.- Returns:
- a mulicast route
-
source
public Optional<ConnectPoint> source()
Deprecated.The source which has been removed or added.- Returns:
- an optional connect point
-
sink
public Optional<ConnectPoint> sink()
Deprecated.The sink which has been removed or added. The field may not be set if the sink has not been detected yet or has been removed.- Returns:
- an optional connect point
-
sinks
public Set<ConnectPoint> sinks()
Deprecated.Returns the set of sinks associated with this route. Only valid with SOURCE_ADDED events.- Returns:
- a set of connect points
-
-