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

cn.sliew.carp.module.queue.redis.test1.QueueContextHolder Maven / Gradle / Ivy

There is a newer version: 0.0.14
Show newest version
package cn.sliew.carp.module.queue.redis.test1;

public class QueueContextHolder {

    private static ThreadLocal holder = new ThreadLocal<>();

    public static void set(TestMessage context) {
        holder.set(context);
    }

    public static TestMessage get() {
        return holder.get();
    }

    public static void clear() {
        holder.remove();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy