Package org.infinispan.lock

Examples of org.infinispan.lock.LockManagerImpl


* @since 4.0
*/
@DefaultFactoryFor(classes = LockManager.class)
public class LockManagerFactory extends AbstractComponentFactory implements AutoInstantiableFactory {
   public <T> T construct(Class<T> componentType) {
      return (T) new LockManagerImpl();
   }
View Full Code Here

TOP

Related Classes of org.infinispan.lock.LockManagerImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.