X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=support%2Fgeneral%2Fsrc%2Fmain%2Fjava%2Forg%2Fwamblee%2Fgeneral%2FThreadSpecificProxyFactory.java;h=81127009e4a6afc09993800789637a0001c78ce0;hb=66d09690a9c113766d63df4e7623534fb278f265;hp=ce912ef37b53b6c54dd8a51717f6cced462991e5;hpb=8e20b580861e4aec9cdce7968db2f65e6bff99ca;p=utils diff --git a/support/general/src/main/java/org/wamblee/general/ThreadSpecificProxyFactory.java b/support/general/src/main/java/org/wamblee/general/ThreadSpecificProxyFactory.java index ce912ef3..81127009 100644 --- a/support/general/src/main/java/org/wamblee/general/ThreadSpecificProxyFactory.java +++ b/support/general/src/main/java/org/wamblee/general/ThreadSpecificProxyFactory.java @@ -19,24 +19,34 @@ import java.lang.reflect.InvocationHandler; import java.lang.reflect.Proxy; /** + *

* Thread-specific proxy is used to create implementations of interfaces that * delegate to a thread-specific implementation of the service. + *

* + *

* It can be used for instance to create a contextual reference to an entity * manager that delegates to a thread-specific instance. + *

* + *

* The {@link #set(Object)} method sets the current service instance for the * current thread. The {@link #get()} method gets the current service instance * for the current thread. The {@link #getProxy()} method gets a proxy that will * delegate at runtime to the thread-specific instance. The result from this * method can be passed at construction of an object that will be used by * multiple threads. - * + *

+ * + *

* This class is mostly used by infrastructure code (utilities) and test tools. + *

* + *

* Care has been taken so that the invocation handler is serializable. However, * it is only serializable within one virtual machine. It cannot be used in a * distributed context where it can be sent to another JVM. + *

* * @param T * Interface to proxy.