org.jboss.cache.pojo.notification.annotation
Annotation Type MapModified


@Retention(value=RUNTIME)
@Target(value=METHOD)
public @interface MapModified

Indicates that the marked method should be called when an attached map is modified.

The method can have any name, but should take a single parameter which is either a MapModifiedEvent or any superclass. Otherwise, an IllegalArgumentException will be thrown by PojoCache.addListener(java.lang.Object)

Example:

    @PojoCacheMapener
    public class MyMapener()
    {
       @MapModified
       public void handleModified(MapModifiedEvent event)
       {
          System.out.println("Map = " + even.getSource());
       }
    }
 

Author:
Jason T. Greene