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

com.atomikos.util.DynamicProxy Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
/**
 * Copyright (C) 2000-2016 Atomikos 
 *
 * LICENSE CONDITIONS
 *
 * See http://www.atomikos.com/Main/WhichLicenseApplies for details.
 */

package com.atomikos.util;



 /**
  * 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).
  *
  */

public interface DynamicProxy 
{
	/**
	 * Gets the underlying object that does the proxying.
	 *
	 * 
	 * @return The object, equivalent to calling Proxy.getInvocationHandler(dynamicProxy).
	 */

	public Object getInvocationHandler();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy