Package org.infinispan.marshall

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


   }

   @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

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

   }

   @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

Related Classes of org.infinispan.marshall.LegacyMarshallerAdapter

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.