Infinispan.HotRod.Config.ConfigurationBuilder.Marshaller C# (CSharp) Method

Marshaller() public method

public Marshaller ( IMarshaller marshaller ) : ConfigurationBuilder
marshaller IMarshaller
return ConfigurationBuilder
        public ConfigurationBuilder Marshaller(IMarshaller marshaller)
        {
            this.marshaller = marshaller;
            return this;
        }
 

Usage Example

コード例 #1
0
 public void BeforeClass() {
     ConfigurationBuilder conf = new ConfigurationBuilder();
     conf.AddServer().Host("127.0.0.1").Port(11222);
     conf.ConnectionTimeout(90000).SocketTimeout(6000);
     marshaller = new JBasicMarshaller();
     conf.Marshaller(marshaller);
     remoteManager = new RemoteCacheManager(conf.Build(), true);
 }
All Usage Examples Of Infinispan.HotRod.Config.ConfigurationBuilder::Marshaller