Package org.apache.myfaces.trinidad.util.ThreadLocalUtils

Examples of org.apache.myfaces.trinidad.util.ThreadLocalUtils.ThreadLocalManager


   * Called by the GlobalConfiguratorImpl when the request is finished so that the
   * ThreadLocalResetter can ask the ThreadLocalManager to clean itself up
   */
  void __removeThreadLocals()
  {
    ThreadLocalManager threadLocalManager = _threadLocalManager.get();
   
    if (threadLocalManager != null)
    {
      // clean up all of the request-scoped ThreadLocals
      threadLocalManager.removeThreadLocals();
    }
  }
View Full Code Here


   * Called by the GlobalConfiguratorImpl when the request is finished so that the
   * ThreadLocalResetter can ask the ThreadLocalManager to clean itself up
   */
  void __removeThreadLocals()
  {
    ThreadLocalManager threadLocalManager = _threadLocalManager.get();
   
    if (threadLocalManager != null)
    {
      // clean up all of the request-scoped ThreadLocals
      threadLocalManager.removeThreadLocals();
    }
  }
View Full Code Here

TOP

Related Classes of org.apache.myfaces.trinidad.util.ThreadLocalUtils.ThreadLocalManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.