From: Jan S. <st...@us...> - 2002-01-27 23:16:10
|
Update of /cvsroot/javaprofiler/module/net/sourceforge/javaprofiler/module/actions In directory usw-pr-cvs1:/tmp/cvs-serv7719 Modified Files: SessionCookie.java Log Message: GC, enableGC, disableGC, createSnapshot methods added. Index: SessionCookie.java =================================================================== RCS file: /cvsroot/javaprofiler/module/net/sourceforge/javaprofiler/module/actions/SessionCookie.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** SessionCookie.java 2001/10/14 22:17:11 1.1.1.1 --- SessionCookie.java 2002/01/27 23:16:06 1.2 *************** *** 50,57 **** --- 50,80 ---- public void makeCurrent(); + /** + * Creates snapshot of the session. + */ + public void createSnapshot(); + + /** + * Forces GC in the session. + */ + public void gc(); + + /** + * Enables GC in the session. + */ + public void enableGC(); + + /** + * Disables GC in the session. + */ + public void disableGC(); + } /* * $Log$ + * Revision 1.2 2002/01/27 23:16:06 stolis + * GC, enableGC, disableGC, createSnapshot methods added. + * * Revision 1.1.1.1 2001/10/14 22:17:11 stolis * The very first version of profiler module. |