[jboss-cvs] JBossCache/src-50/org/jboss/cache/pojo ...

Ben Wang bwang at jboss.com
Wed Jul 26 03:06:58 EDT 2006


  User: bwang   
  Date: 06/07/26 03:06:58

  Modified:    src-50/org/jboss/cache/pojo  PojoCacheListener.java
  Log:
  Removed eviction events.
  
  Revision  Changes    Path
  1.3       +1 -25     JBossCache/src-50/org/jboss/cache/pojo/PojoCacheListener.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: PojoCacheListener.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src-50/org/jboss/cache/pojo/PojoCacheListener.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- PojoCacheListener.java	27 Jun 2006 05:25:43 -0000	1.2
  +++ PojoCacheListener.java	26 Jul 2006 07:06:58 -0000	1.3
  @@ -13,7 +13,7 @@
    * Listener interface for PojoCache events
    *
    * @author Ben Wang
  - * @version $Id: PojoCacheListener.java,v 1.2 2006/06/27 05:25:43 bwang Exp $
  + * @version $Id: PojoCacheListener.java,v 1.3 2006/07/26 07:06:58 bwang Exp $
    * @since 2.0
    */
   public interface PojoCacheListener
  @@ -44,28 +44,4 @@
       * @param isLocal True if this is the local event, e.g., I am the active node.
       */
      void modify(Object pojo, Field field, boolean pre, boolean isLocal);
  -
  -   /**
  -    * Event when a POJO is passivating.
  -    *
  -    * @param pojo The POJO that is passivating.
  -    * @param pre  True if this the callback before it is passivated.
  -    */
  -   void passivate(Object pojo, boolean pre);
  -
  -   /**
  -    * Event when a POJO is evicting.
  -    *
  -    * @param pojo The POJO that is evicting.
  -    * @param pre  True if this the callback before it is evicted.
  -    */
  -   void evict(Object pojo, boolean pre);
  -
  -   /**
  -    * Event when a POJO is activating.
  -    *
  -    * @param pojo The POJO that is activating.
  -    * @param pre  True if this the callback before it is activated.
  -    */
  -   void activate(Object pojo, boolean pre);
   }
  
  
  



More information about the jboss-cvs-commits mailing list