public RemoteCacheManager(Configuration configuration, bool start, bool useCompatibilityMarshaller)
 {
     if (useCompatibilityMarshaller)
         manager = new Infinispan.HotRod.RemoteCacheManager(configuration, new Infinispan.HotRod.CompatibilityMarshaller(), start);
     else
         // Don't serialize, use the already serialized data.
         manager = new Infinispan.HotRod.RemoteCacheManager(configuration, new Infinispan.HotRod.IdentityMarshaller(), start);
 }
Beispiel #2
0
 public RemoteCacheManager(Configuration configuration, bool start, bool useCompatibilityMarshaller)
 {
     if (useCompatibilityMarshaller)
     {
         manager = new Infinispan.HotRod.RemoteCacheManager(configuration, new Infinispan.HotRod.CompatibilityMarshaller(), start);
     }
     else
     {
         // Don't serialize, use the already serialized data.
         manager = new Infinispan.HotRod.RemoteCacheManager(configuration, new Infinispan.HotRod.IdentityMarshaller(), start);
     }
 }
 public RemoteCacheManager()
 {
     // Don't serialize, use the already serialized data.
     manager = new Infinispan.HotRod.RemoteCacheManager(new IdentitySerializer());
 }
 public RemoteCacheManager(Configuration configuration, bool start)
 {
     // Don't serialize, use the already serialized data.
     manager = new Infinispan.HotRod.RemoteCacheManager(configuration, new IdentitySerializer(), start);
 }
 public RemoteCacheManager(Configuration configuration, ISerializer serializer)
 {
     manager = new Infinispan.HotRod.RemoteCacheManager(configuration, serializer);
 }
 public RemoteCacheManager()
 {
     // Don't serialize, use the already serialized data.
     manager = new Infinispan.HotRod.RemoteCacheManager(new Infinispan.HotRod.IdentityMarshaller());
 }
 public RemoteCacheManager(Configuration configuration, Infinispan.HotRod.IMarshaller marshaller)
 {
     manager = new Infinispan.HotRod.RemoteCacheManager(configuration, marshaller);
 }
Beispiel #8
0
 public RemoteCacheManager(bool start)
 {
     // Don't serialize, use the already serialized data.
     manager = new Infinispan.HotRod.RemoteCacheManager(new Infinispan.HotRod.IdentityMarshaller(), start);
 }
Beispiel #9
0
 public RemoteCacheManager(Configuration configuration)
 {
     // Don't serialize, use the already serialized data.
     manager = new Infinispan.HotRod.RemoteCacheManager(configuration, new Infinispan.HotRod.IdentityMarshaller());
 }
Beispiel #10
0
 public RemoteCacheManager(Configuration configuration, Infinispan.HotRod.IMarshaller marshaller)
 {
     manager = new Infinispan.HotRod.RemoteCacheManager(configuration, marshaller);
 }