public final class EventuallyConsistentMapEvent<K,V> extends Object
| Modifier and Type | Class and Description | 
|---|---|
static class  | 
EventuallyConsistentMapEvent.Type  | 
| Constructor and Description | 
|---|
EventuallyConsistentMapEvent(String name,
                            EventuallyConsistentMapEvent.Type type,
                            K key,
                            V value)
Creates a new event object. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
boolean | 
equals(Object o)  | 
int | 
hashCode()  | 
K | 
key()
Returns the key this event concerns. 
 | 
String | 
name()
Returns the map name. 
 | 
String | 
toString()  | 
EventuallyConsistentMapEvent.Type | 
type()
Returns the type of the event. 
 | 
V | 
value()
Returns the value associated with this event. 
 | 
public EventuallyConsistentMapEvent(String name, EventuallyConsistentMapEvent.Type type, K key, V value)
name - map nametype - the type of the eventkey - the key the event concernsvalue - the value mapped to the keypublic String name()
public EventuallyConsistentMapEvent.Type type()
public K key()
public V value()