2 Replies Latest reply on Oct 9, 2006 12:25 PM by brian.stansberry

    Pass event type to EvictionPolicy.canIgnoreEvents

    brian.stansberry

      When we moved to EvictionInterceptor from a TreeCacheListener-based approach, one thing we lost is the ability for custom policies to prevent certain kinds of events going into the eviction queue. For example, a customer wants to prevent node modifications and visits from going in the queue as they are far too numerous for his app; he just wants adds (and maybe removes) so he can evict solely based on maxNodeAge.

      Currently the only hook we provide to prevent an event going into the queue is EvictionPolicy.canIgnoreEvent(Fqn). But, when this call is made, we know the event type and even have a bunch of int constants identifying the valid types. So, for 2.0 I propose 1) create a proper JDK5 Enum of the event types, and 2) change the EvictionPolicy interface to:

      boolean canIgnoreEvent(Fqn fqn, NodeEventType eventType)


      The existing policies would just ignore the second parameter.