public interface EntryEvent<K,V> extends Event<EntryEvent.Type>
entries
.
Note that the semantics for interceptors handling pre-commit events (e.g. INSERTING, UPDATING, REMOVING) are analogous to the semantics for triggers. Interceptors are permitted to change the entry content before the operation is committed. Such interceptors execute after triggers and become the final arbiter of the entry value.
Post-commit EntryEvents (e.g. INSERTED, UPDATED, REMOVED) do not allow interceptors to modify the entries' content.
Modifier and Type | Interface | Description |
---|---|---|
static class |
EntryEvent.Type |
The
EntryEvent types. |
Modifier and Type | Method | Description |
---|---|---|
Set<BinaryEntry<K,V>> |
getEntrySet() |
Return the immutable Set of
entries on which the
action represented by this EntryEvent occurred. |
getDispatcher
getType, nextInterceptor
Set<BinaryEntry<K,V>> getEntrySet()
entries
on which the
action represented by this EntryEvent
occurred.