All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.zhangxd1989.basetool.thread.threadlocal.NamedThreadLocal Maven / Gradle / Ivy

There is a newer version: 1.0.16
Show newest version
package com.github.zhangxd1989.basetool.thread.threadlocal;

/**
 * 带有Name标识的 {@link ThreadLocal},调用toString返回name
 *
 * @param  值类型
 * @author sheldon
 */
public class NamedThreadLocal extends ThreadLocal {

    private final String name;

    /**
     * 构造
     *
     * @param name 名字
     */
    public NamedThreadLocal(String name) {
        this.name = name;
    }

    @Override
    public String toString() {
        return this.name;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy