Exemplo n.º 1
0
 public RecoveryManager(IConfigOperationExecutor opHandler, IConfigurationStore configurationStore)
 {
     _runningClusteredJobMap = Hashtable.Synchronized(new Hashtable());
     _operationHandler       = opHandler;
     _configurationStore     = configurationStore;
     new Dictionary <DIFKey, List <DiffTrackObject> >();
     _mutex = new object();
     //recreate diffMap
 }
Exemplo n.º 2
0
 internal ConfigurationRestoreJob(string identifier, RecoveryPersistenceManager persistenceManager, IConfigOperationExecutor opHandler, string cluster, Dictionary <string, string> database, RecoveryJobType jobType)
     : base(identifier, jobType, persistenceManager, cluster)
 {
     operationHandler = opHandler;
     _database        = database;
 }