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

me.chanjar.weixin.mp.util.WxMpConfigStorageHolder Maven / Gradle / Ivy

There is a newer version: 4.6.7.B
Show newest version
package me.chanjar.weixin.mp.util;

/**
 * @author yd
 * created on  2019-03-20 22:06
 */
public class WxMpConfigStorageHolder {
  private static final ThreadLocal THREAD_LOCAL = new ThreadLocal() {
    @Override
    protected String initialValue() {
      return "default";
    }
  };

  public static String get() {
    return THREAD_LOCAL.get();
  }

  public static void set(String label) {
    THREAD_LOCAL.set(label);
  }

  /**
   * 此方法需要用户根据自己程序代码,在适当位置手动触发调用,本SDK里无法判断调用时机
   */
  public static void remove() {
    THREAD_LOCAL.remove();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy