Committed by
Gerrit Code Review
adding a listener service to the mcast service
Change-Id: Ib9a46129f5c236f83244d8c62ce63dbd58882cd4
Showing
1 changed file
with
3 additions
and
1 deletions
| ... | @@ -16,6 +16,7 @@ | ... | @@ -16,6 +16,7 @@ |
| 16 | package org.onosproject.net.mcast; | 16 | package org.onosproject.net.mcast; |
| 17 | 17 | ||
| 18 | import com.google.common.annotations.Beta; | 18 | import com.google.common.annotations.Beta; |
| 19 | +import org.onosproject.event.ListenerService; | ||
| 19 | import org.onosproject.net.ConnectPoint; | 20 | import org.onosproject.net.ConnectPoint; |
| 20 | 21 | ||
| 21 | import java.util.List; | 22 | import java.util.List; |
| ... | @@ -24,7 +25,8 @@ import java.util.List; | ... | @@ -24,7 +25,8 @@ import java.util.List; |
| 24 | * A service interface for maintaining multicast information. | 25 | * A service interface for maintaining multicast information. |
| 25 | */ | 26 | */ |
| 26 | @Beta | 27 | @Beta |
| 27 | -public interface MulticastRouteService { | 28 | +public interface MulticastRouteService |
| 29 | + extends ListenerService<McastEvent, McastListener> { | ||
| 28 | 30 | ||
| 29 | /** | 31 | /** |
| 30 | * Adds a route to the information base. | 32 | * Adds a route to the information base. | ... | ... |
-
Please register or login to post a comment