Interface RegistryEventConsumer<E>
-
- All Known Subinterfaces:
MetricsPublisher<E>
- All Known Implementing Classes:
CompositeRegistryEventConsumer
public interface RegistryEventConsumer<E>Registry Event Consumer to be used by AbstractRegistry.RegistryEventProcessor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonEntryAddedEvent(EntryAddedEvent<E> entryAddedEvent)voidonEntryRemovedEvent(EntryRemovedEvent<E> entryRemoveEvent)voidonEntryReplacedEvent(EntryReplacedEvent<E> entryReplacedEvent)
-
-
-
Method Detail
-
onEntryAddedEvent
void onEntryAddedEvent(EntryAddedEvent<E> entryAddedEvent)
-
onEntryRemovedEvent
void onEntryRemovedEvent(EntryRemovedEvent<E> entryRemoveEvent)
-
onEntryReplacedEvent
void onEntryReplacedEvent(EntryReplacedEvent<E> entryReplacedEvent)
-
-