Examples of LegacyMarshallerAdapter


Examples of org.infinispan.marshall.LegacyMarshallerAdapter

   }

   @Deprecated
   CompatibilityCacheFactory(String cacheName, org.infinispan.marshall.Marshaller marshaller, CacheMode cacheMode) {
      this.cacheName = cacheName;
      this.marshaller = new LegacyMarshallerAdapter(marshaller);
      this.cacheMode = cacheMode;
   }
View Full Code Here

Examples of org.infinispan.marshall.LegacyMarshallerAdapter

   }

   @Deprecated
   CompatibilityCacheFactory(String cacheName, org.infinispan.marshall.Marshaller marshaller, CacheMode cacheMode) {
      this.cacheName = cacheName;
      this.marshaller = new LegacyMarshallerAdapter(marshaller);
      this.cacheMode = cacheMode;
   }
View Full Code Here

Examples of org.infinispan.marshall.LegacyMarshallerAdapter

   /**
    * Sets the marshaller instance to be used by the interoperability layer.
    */
   @Deprecated
   public CompatibilityModeConfigurationBuilder marshaller(org.infinispan.marshall.Marshaller marshaller) {
      this.marshaller = new LegacyMarshallerAdapter(marshaller);
      return this;
   }
View Full Code Here

Examples of org.infinispan.marshall.LegacyMarshallerAdapter

   }

   @Deprecated
   CompatibilityCacheFactory(String cacheName, org.infinispan.marshall.Marshaller marshaller, CacheMode cacheMode) {
      this.cacheName = cacheName;
      this.marshaller = new LegacyMarshallerAdapter(marshaller);
      this.cacheMode = cacheMode;
   }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.