com.atomikos.util
Interface DynamicProxy


public interface DynamicProxy

An interface to improve performance of dynamic proxies. The added method 'getInvocationHandler' avoids calls to the Proxy class (which suffers from performance issues related to synchronization overhead).


Method Summary
 Object getInvocationHandler()
          Gets the underlying object that does the proxying.
 

Method Detail

getInvocationHandler

Object getInvocationHandler()
Gets the underlying object that does the proxying.

Returns:
The object, equivalent to calling Proxy.getInvocationHandler(dynamicProxy).


Copyright © 2011. All Rights Reserved.