Hi ,

I have used the code from example at
http://commons.apache.org/proper/commons-jcs/ElementEventHandling.html for
event handling.

But when an element is evicted from JCS cache im not getting any callback
though i know cache eviction has happened for element for sure.

Is there anything else that i need to do apart from what is mentioned in
the example.

CacheAccess<String, String> jcs = JCS.getInstance( "myregion" );

    . . .

    MyEventHandler meh = new MyEventHandler();

    // this should add the event handler to all items as
    //they are created.
    // jcs.getDefaultElementAttributes returns a copy not a reference
    IElementAttributes attributes = jcs.getDefaultElementAttributes();
    attributes.addElementEventHandler( meh );
    jcs.setDefaultElementAttributes( attributes );

Reply via email to