@Deprecated public interface MulticastRouteService extends ListenerService<McastEvent,McastListener>
Modifier and Type | Method and Description |
---|---|
void |
add(McastRoute route)
Deprecated.
Adds a route to the information base.
|
void |
addSink(McastRoute route,
ConnectPoint connectPoint)
Deprecated.
Adds a sink to the route to which a data stream should be
sent to.
|
void |
addSource(McastRoute route,
ConnectPoint connectPoint)
Deprecated.
Adds a source connection to the route from where the
data stream is originating.
|
Set<ConnectPoint> |
fetchSinks(McastRoute route)
Deprecated.
Find the list of sinks for this route.
|
ConnectPoint |
fetchSource(McastRoute route)
Deprecated.
Find the data source association for this multicast route.
|
Set<McastRoute> |
getRoutes()
Deprecated.
Gets all multicast routes in the system.
|
void |
remove(McastRoute route)
Deprecated.
Removes a route from the information base.
|
void |
removeSink(McastRoute route,
ConnectPoint connectPoint)
Deprecated.
Removes a sink from the route.
|
addListener, removeListener
void add(McastRoute route)
route
- a multicast routevoid remove(McastRoute route)
route
- a multicast routeSet<McastRoute> getRoutes()
void addSource(McastRoute route, ConnectPoint connectPoint)
route
- the multicast routeconnectPoint
- a source connect pointvoid addSink(McastRoute route, ConnectPoint connectPoint)
route
- a multicast routeconnectPoint
- a sink connect pointvoid removeSink(McastRoute route, ConnectPoint connectPoint)
route
- the multicast routeconnectPoint
- a sink connect pointConnectPoint fetchSource(McastRoute route)
route
- a multicast routeSet<ConnectPoint> fetchSinks(McastRoute route)
route
- a multicast route