[Mrpostman-cvs] mrpostman/src/org/mrbook/mrpostman MrPostman.java,1.18,1.19
Brought to you by:
chris_humphreys,
mrbook
From: <lb...@us...> - 2003-04-24 22:31:06
|
Update of /cvsroot/mrpostman/mrpostman/src/org/mrbook/mrpostman In directory sc8-pr-cvs1:/tmp/cvs-serv671/src/org/mrbook/mrpostman Modified Files: MrPostman.java Log Message: Threadpool patch applied. This feature allows the PopServer to use thread pooling to increase efficiency. ( Instanciation of thread is a costly business) Classes borrowed from public domain : http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html Index: MrPostman.java =================================================================== RCS file: /cvsroot/mrpostman/mrpostman/src/org/mrbook/mrpostman/MrPostman.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** MrPostman.java 3 Apr 2003 23:40:48 -0000 1.18 --- MrPostman.java 24 Apr 2003 22:30:32 -0000 1.19 *************** *** 205,209 **** public void exit() { logger.info("Exiting from application"); ! // pops.shutdown(); System.exit(1); } --- 205,209 ---- public void exit() { logger.info("Exiting from application"); ! pops.shutdown(); System.exit(1); } |