public static class EventingMapBasedStorageService.RemoveEntryEvent<KeyType,ValueType>
extends org.springframework.context.ApplicationEvent
Modifier and Type | Field and Description |
---|---|
private KeyType |
key
Key to the removed item.
|
private String |
partition
Storage partition to which the item was removed.
|
private static long |
serialVersionUID
Serial version UID.
|
private StorageService<KeyType,ValueType> |
storageService
Storage service to which the item was removed.
|
private ValueType |
value
The removed item.
|
source
Constructor and Description |
---|
EventingMapBasedStorageService.RemoveEntryEvent(StorageService<KeyType,ValueType> storageService,
String partition,
KeyType key,
ValueType value)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
KeyType |
getKey()
Gets the key of the removed item.
|
String |
getPartition()
Gets the partition to which the entry was removed.
|
StorageService<KeyType,ValueType> |
getStorageService()
Gets the storage service to which an item was removed.
|
ValueType |
getValue()
Gets the removed item.
|
getSource, toString
private static final long serialVersionUID
private StorageService<KeyType,ValueType> storageService
private String partition
private KeyType key
private ValueType value
public EventingMapBasedStorageService.RemoveEntryEvent(StorageService<KeyType,ValueType> storageService, String partition, KeyType key, ValueType value)
storageService
- storage service to which an item was removedpartition
- partition to which the entry was removedkey
- key of the removed itemvalue
- removed itempublic StorageService<KeyType,ValueType> getStorageService()
public String getPartition()
public KeyType getKey()
public ValueType getValue()
Copyright © 1999-2012. All Rights Reserved.