|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
NodePassivatedEvent.java | - | - | - | - |
|
1 | package org.jboss.cache.notifications.event; | |
2 | ||
3 | import java.util.Map; | |
4 | ||
5 | /** | |
6 | * This event is passed in to any method annotated with {@link org.jboss.cache.notifications.annotation.NodePassivated}. | |
7 | * | |
8 | * @author <a href="mailto:manik@jboss.org">Manik Surtani</a> | |
9 | * @since 2.0.0 | |
10 | */ | |
11 | public interface NodePassivatedEvent extends NodeEvent | |
12 | { | |
13 | /** | |
14 | * @return an unmodifiable {@link java.util.Map} of data being passivated. Empty map when {@link #isPre()} is <tt>false</tt>. | |
15 | */ | |
16 | Map getData(); | |
17 | } |
|