Exemple #1
0
        public Workflow(string path, string wexflowTempFolder, string xsdPath, RSServers rssrvs)
        {
            JobId             = 1;
            _thread           = null;
            WorkflowFilePath  = path;
            WexflowTempFolder = wexflowTempFolder;
            XsdPath           = xsdPath;
            FilesPerTask      = new Dictionary <int, List <FileInf> >();
            EntitiesPerTask   = new Dictionary <int, List <Entity> >();
            RSSrvs            = rssrvs;



            Check();
            Load();
        }
Exemple #2
0
 void LoadRSServers(XDocument xdoc)
 {
     RSSrvs = new RSServers(xdoc);
 }