jfclere     2002/11/26 09:20:06

  Modified:    catalina/src/share/org/apache/catalina/session
                        PersistentManagerBase.java
  Log:
  Some tries with the PersistentManager.
  The idea is to use it with a Store and allow to share sessions between
  several TC sharing the store space.
  
  Revision  Changes    Path
  1.10      +13 -4     
jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/session/PersistentManagerBase.java
  
  Index: PersistentManagerBase.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/session/PersistentManagerBase.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- PersistentManagerBase.java        28 Aug 2002 17:08:58 -0000      1.9
  +++ PersistentManagerBase.java        26 Nov 2002 17:20:06 -0000      1.10
  @@ -660,6 +660,15 @@
   
       }
   
  +    /**
  +     * Remove this Session from the active Sessions for this Manager,
  +     * but not from the Store. (Used by the PersistentValve)
  +     *
  +     * @param session Session to be removed
  +     */
  +    public void removeSuper(Session session) {
  +        super.remove (session);
  +    }
   
       /**
        * Save all currently active sessions in the appropriate persistence
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to