Annotation Type CacheEntryCreated


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

    Methods annotated with this annotation should be public and take in a single parameter, a CacheEntryCreatedEvent otherwise an IncorrectListenerException will be thrown when registering your cache listener.

    Locking: notification is performed WITH locks on the given key.

    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