Пример #1
0
 public bfgWorkerRemoteOrchestrator(IRxnManager <IRxn> rxnManager, IAppStatusStore appCmds, IUpdateStorageClient appUpdates, IRxnProcessor <WorkerDiscovered <StartUnitTest, UnitTestResult> > workerPool, IClusterFanout <StartUnitTest, UnitTestResult> cluster, IRxnProcessor <WorkerDisconnected> workerPoolD)
 {
     _rxnManager  = rxnManager;
     _appCmds     = appCmds;
     _appUpdates  = appUpdates;
     _workerPool  = workerPool;
     _cluster     = cluster;
     _workerPoolD = workerPoolD;
 }
Пример #2
0
        public bfgWorkerRxnManagerBridge(IAppStatusStore appCmds, IRxnManager <IRxn> repsonseChannel, IUpdateStorageClient updates, IDictionary <string, string> info = null)
        {
            _repsonseChannel = repsonseChannel;
            _updates         = updates;
            _appCmds         = appCmds;

            if (info != null)
            {
                Info = info;
            }
        }