|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
ViewChangedEvent.java | - | - | - | - |
|
1 | package org.jboss.cache.notifications.event; | |
2 | ||
3 | import org.jgroups.View; | |
4 | ||
5 | /** | |
6 | * This event is passed in to any method annotated with {@link org.jboss.cache.notifications.annotation.ViewChanged}. | |
7 | * | |
8 | * @author <a href="mailto:manik@jboss.org">Manik Surtani</a> | |
9 | * @since 2.0.0 | |
10 | */ | |
11 | public interface ViewChangedEvent extends Event | |
12 | { | |
13 | /** | |
14 | * @return the new view associated with this view change. | |
15 | */ | |
16 | View getNewView(); | |
17 | } |
|