ThreadUtil.java
上传用户:xfwatch
上传日期:2020-12-14
资源大小:872k
文件大小:2k
源码类别:

中间件编程

开发平台:

Java

  1. /*
  2.  * JBoss, Home of Professional Open Source
  3.  * Copyright 2006, Red Hat Middleware LLC, and individual contributors 
  4.  * as indicated by the @author tags. 
  5.  * See the copyright.txt in the distribution for a
  6.  * full listing of individual contributors. 
  7.  * This copyrighted material is made available to anyone wishing to use,
  8.  * modify, copy, or redistribute it subject to the terms and conditions
  9.  * of the GNU Lesser General Public License, v. 2.1.
  10.  * This program is distributed in the hope that it will be useful, but WITHOUT A 
  11.  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
  12.  * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
  13.  * You should have received a copy of the GNU Lesser General Public License,
  14.  * v.2.1 along with this distribution; if not, write to the Free Software
  15.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
  16.  * MA  02110-1301, USA.
  17.  * 
  18.  * (C) 2005-2006,
  19.  * @author JBoss Inc.
  20.  */
  21. package org.jboss.blacktie.jatmibroker.core.util;
  22. /**
  23.  * Provides utilities to manage thread ids.
  24.  */
  25. public class ThreadUtil {
  26. /**
  27.  * The ID associated with the thread.
  28.  */
  29. private static final ThreadLocal THREAD_ID = new ThreadLocal();
  30. /**
  31.  * The thread id counter.
  32.  */
  33. private static long id;
  34. /**
  35.  * Get the string ID for the current thread.
  36.  * 
  37.  * @return The thread id
  38.  */
  39. public static String getThreadId() {
  40. return getThreadId(Thread.currentThread());
  41. }
  42. /**
  43.  * Get the string ID for the specified thread.
  44.  * 
  45.  * @param thread
  46.  *            The thread.
  47.  * @return The thread id
  48.  */
  49. public static String getThreadId(final Thread thread) {
  50. final Object id = THREAD_ID.get();
  51. if (id != null) {
  52. return (String) id;
  53. }
  54. final String newId = getNextId();
  55. THREAD_ID.set(newId);
  56. return newId;
  57. }
  58. /**
  59.  * Get the next thread id to use.
  60.  * 
  61.  * @return The next thread id.
  62.  */
  63. private static synchronized String getNextId() {
  64. return "TSThread:" + Long.toHexString(++id);
  65. }
  66. }