You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2011/08/26 16:16:31 UTC

svn commit: r1162125 - in /tapestry/tapestry5/trunk: build.gradle tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/services/PerthreadManager.java

Author: hlship
Date: Fri Aug 26 14:16:30 2011
New Revision: 1162125

URL: http://svn.apache.org/viewvc?rev=1162125&view=rev
Log:
Roll version number forward to 5.3-beta-1

Modified:
    tapestry/tapestry5/trunk/build.gradle
    tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/services/PerthreadManager.java

Modified: tapestry/tapestry5/trunk/build.gradle
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/build.gradle?rev=1162125&r1=1162124&r2=1162125&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/build.gradle (original)
+++ tapestry/tapestry5/trunk/build.gradle Fri Aug 26 14:16:30 2011
@@ -2,7 +2,7 @@ description = "Apache Tapestry 5 Project
 
 // Remember that after generating a release, this should be incremented. Also don't forget to
 // tag the release in Subversion.
-tapestryVersion = "5.3-alpha-14"
+tapestryVersion = "5.3-beta-1"
 
 jettyVersion = '7.0.0.v20091005'
 tomcatVersion = '6.0.30'

Modified: tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/services/PerthreadManager.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/services/PerthreadManager.java?rev=1162125&r1=1162124&r2=1162125&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/services/PerthreadManager.java (original)
+++ tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/services/PerthreadManager.java Fri Aug 26 14:16:30 2011
@@ -29,28 +29,27 @@ public interface PerthreadManager
 {
     /**
      * Adds a listener to the hub. All listeners are discarded at the {@link #cleanup()}.
-     * 
-     * @param listener
-     *            to add
+     *
+     * @param listener to add
      */
     void addThreadCleanupListener(ThreadCleanupListener listener);
 
     /**
-     * Immediately performs a cleanup of the thread, notifying all listeners then discarding the thread locale and the
-     * map it stores.
+     * Immediately performs a cleanup of the thread, notifying all listeners, then discarding all per-thread data
+     * stored by the manager.
      */
     void cleanup();
 
     /**
      * Creates a value using a unique internal key.
-     * 
+     *
      * @since 5.2.0
      */
     <T> PerThreadValue<T> createValue();
 
     /**
      * Invokes {@link Runnable#run()}, providing a try...finally to {@linkplain #cleanup() cleanup} after.
-     * 
+     *
      * @since 5.2.0
      */
     void run(Runnable runnable);