Annotation Type CacheEntryVisited


  • @Retention(RUNTIME)
    @Target(METHOD)
    public @interface CacheEntryVisited
    This annotation should be used on methods that need to be notified when a cache entry is visited.

    Methods annotated with this annotation should accept a single parameter, a CacheEntryVisitedEvent otherwise a IncorrectListenerException will be thrown when registering your listener.

    Locking: notification is performed WITHOUT locks on the given key (unless Flag.FORCE_WRITE_LOCK is used for this call).

    Any exceptions thrown by the listener will abort the call. Any other listeners not yet called will not be called, and any transactions in progress will be rolled back.

    Since:
    4.0
    Author:
    Manik Surtani
    See Also:
    Listener