Package org.infinispan.remoting.transport.RetryOnFailureXSiteCommand

Examples of org.infinispan.remoting.transport.RetryOnFailureXSiteCommand.MaxRetriesPolicy


      public StatePushTask(String siteName, Address origin, XSiteStateTransferConfiguration configuration, int minTopologyId) {
         this.minTopologyId = minTopologyId;
         this.chunkSize = configuration.chunkSize();
         this.waitTime = configuration.waitTime();
         this.retryPolicy = new MaxRetriesPolicy(configuration.maxRetries());
         this.origin = origin;
         this.xSiteBackup = new XSiteBackup(siteName, true, configuration.timeout());
         this.canceled = false;
         this.finished = false;
         this.error = false;
View Full Code Here

TOP

Related Classes of org.infinispan.remoting.transport.RetryOnFailureXSiteCommand.MaxRetriesPolicy

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.