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

com.taobao.hsf.tbremoting.invoke.CallbackInvocationContext Maven / Gradle / Ivy

There is a newer version: 1.8.3
Show newest version
package com.taobao.hsf.tbremoting.invoke;

/**
 * 
 * @author kongming.lrq
 * 
 */
public class CallbackInvocationContext {
    private static ThreadLocal callbackContext = new ThreadLocal();

    public static void setContext(Object obj) {
        callbackContext.set(obj);
    }

    public static Object getContext() {
        return callbackContext.get();
    }
}