Class RollbackConfigurator
- java.lang.Object
-
- ch.systemsx.cisd.etlserver.registrator.api.v1.impl.RollbackConfigurator
-
public class RollbackConfigurator extends java.lang.Object
A public class for setting rollback configuration variables (which are stored in package-visible classes).
-
-
Constructor Summary
Constructors Constructor Description RollbackConfigurator()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
setFileSystemAvailabilityPollingWaitTimeAndWaitCount(int waitTimeMS, int waitCount)
These two variables determine together how long the rollback mechanism waits for a file system that has become unavailable and how often it checks for the file system to become available.
-
-
-
Method Detail
-
setFileSystemAvailabilityPollingWaitTimeAndWaitCount
public static void setFileSystemAvailabilityPollingWaitTimeAndWaitCount(int waitTimeMS, int waitCount)
These two variables determine together how long the rollback mechanism waits for a file system that has become unavailable and how often it checks for the file system to become available.The duration the rollback mechanism will wait before giving up equals waitTimeMS * waitCount;
Made public for testing.
-
-