Class EntryRemovedEvent<E>
- java.lang.Object
-
- io.github.resilience4j.core.registry.EntryRemovedEvent<E>
-
- All Implemented Interfaces:
RegistryEvent
public class EntryRemovedEvent<E> extends java.lang.Object
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface io.github.resilience4j.core.registry.RegistryEvent
RegistryEvent.Type
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.time.ZonedDateTimegetCreationTime()Returns the creation time of Registry event.RegistryEvent.TypegetEventType()Returns the type of the Registry event.EgetRemovedEntry()Returns the removed entry.
-
-
-
Method Detail
-
getEventType
public RegistryEvent.Type getEventType()
Description copied from interface:RegistryEventReturns the type of the Registry event.- Returns:
- the type of the Registry event
-
getRemovedEntry
public E getRemovedEntry()
Returns the removed entry.- Returns:
- the removed entry
-
getCreationTime
public java.time.ZonedDateTime getCreationTime()
Description copied from interface:RegistryEventReturns the creation time of Registry event.- Specified by:
getCreationTimein interfaceRegistryEvent- Returns:
- the creation time of Registry event
-
-