Class CacheOnHitEvent<K>

java.lang.Object
io.github.resilience4j.cache.event.CacheOnHitEvent<K>
All Implemented Interfaces:
CacheEvent

public class CacheOnHitEvent<K>
extends java.lang.Object
A CacheEvent which informs about a cache hit.
  • Nested Class Summary

    Nested classes/interfaces inherited from interface io.github.resilience4j.cache.event.CacheEvent

    CacheEvent.Type
  • Constructor Summary

    Constructors 
    Constructor Description
    CacheOnHitEvent​(java.lang.String cacheName, K cacheKey)  
  • Method Summary

    Modifier and Type Method Description
    K getCacheKey()  
    java.lang.String getCacheName()
    Returns the name of the Cache which has created the event.
    java.time.ZonedDateTime getCreationTime()
    Returns the creation time of Cache event.
    CacheEvent.Type getEventType()
    Returns the type of the Cache event.
    java.lang.String toString()  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • CacheOnHitEvent

      public CacheOnHitEvent​(java.lang.String cacheName, K cacheKey)
  • Method Details

    • getEventType

      public CacheEvent.Type getEventType()
      Description copied from interface: CacheEvent
      Returns the type of the Cache event.
      Returns:
      the type of the Cache event
    • getCacheKey

      public K getCacheKey()
    • toString

      public java.lang.String toString()
      Overrides:
      toString in class java.lang.Object
    • getCacheName

      public java.lang.String getCacheName()
      Description copied from interface: CacheEvent
      Returns the name of the Cache which has created the event.
      Specified by:
      getCacheName in interface CacheEvent
      Returns:
      the name of the Cache which has created the event
    • getCreationTime

      public java.time.ZonedDateTime getCreationTime()
      Description copied from interface: CacheEvent
      Returns the creation time of Cache event.
      Specified by:
      getCreationTime in interface CacheEvent
      Returns:
      the creation time of Cache event