|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
NodeRemovedEvent.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.NodeRemoved}. | |
7 | * | |
8 | * @author <a href="mailto:manik@jboss.org">Manik Surtani</a> | |
9 | * @since 2.0.0 | |
10 | */ | |
11 | public interface NodeRemovedEvent extends NodeEvent | |
12 | { | |
13 | /** | |
14 | * @return an unmodifiable {@link Map} of data. When <tt>isPre() == true</tt>, this is the initial state of the {@link org.jboss.cache.Node} | |
15 | * before removal. When called with <tt>isPre() == false</tt>, this is <tt>null</tt>. | |
16 | */ | |
17 | Map getData(); | |
18 | } |
|