Package org.infinispan.statetransfer

Examples of org.infinispan.statetransfer.StateTransferManagerImpl


*/
@DefaultFactoryFor(classes = StateTransferManager.class)
public class StateTransferManagerFactory extends AbstractNamedCacheComponentFactory implements AutoInstantiableFactory {
   public <T> T construct(Class<T> componentType) {
      if (configuration.getCacheMode().isClustered() && !configuration.getCacheMode().isDistributed())
         return componentType.cast(new StateTransferManagerImpl());
      else
         return null;
   }
View Full Code Here


*/
@DefaultFactoryFor(classes = StateTransferManager.class)
public class StateTransferManagerFactory extends AbstractNamedCacheComponentFactory implements AutoInstantiableFactory {
   public <T> T construct(Class<T> componentType) {
      if (configuration.getCacheMode().isClustered() && configuration.isFetchInMemoryState())
         return componentType.cast(new StateTransferManagerImpl());
      else
         return null;
   }
View Full Code Here

*/
@DefaultFactoryFor(classes = StateTransferManager.class)
public class StateTransferManagerFactory extends AbstractNamedCacheComponentFactory implements AutoInstantiableFactory {
   public <T> T construct(Class<T> componentType) {
      if (configuration.getCacheMode().isClustered() && configuration.isStateTransferEnabled())
         return componentType.cast(new StateTransferManagerImpl());
      else
         return null;
   }
View Full Code Here

*/
@DefaultFactoryFor(classes = StateTransferManager.class)
public class StateTransferManagerFactory extends AbstractNamedCacheComponentFactory implements AutoInstantiableFactory {
   public <T> T construct(Class<T> componentType) {
      if (configuration.getCacheMode().isClustered() && !configuration.getCacheMode().isDistributed())
         return componentType.cast(new StateTransferManagerImpl());
      else
         return null;
   }
View Full Code Here

TOP

Related Classes of org.infinispan.statetransfer.StateTransferManagerImpl

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.