Exemplo n.º 1
0
        protected override void Execute()
        {
            var sw = Stopwatch.StartNew();
            var a  = new GetLocalDirectories(BasePath);
            var b  = new GetLocalFiles(a);

            //var c = new GetCurrentManifest();
            a.ProcessAsync();
            b.ProcessAsync();
            //c.Process();

            a.Wait();
            b.Wait();
            //c.Wait();

            if (Errors.HasErrors)
            {
                Errors.WriteErrors();
                return;
            }

            //client shouldn't send change set to server
            //instead it should send the manifest file and
            //the server returns the change set as well as
            //flagging what files it needs



            ////now we need to get the current manifest
            ////and compare to what we have
            //var d = new GetChangeSet(null, a.Root); //change 2nd a to c
            //d.Process();
            //d.Wait();



            sw.Stop();
            Console.WriteLine($"Completed in {sw.Elapsed}...");
        }
Exemplo n.º 2
0
 public GetLocalFiles(GetLocalDirectories producer)
 {
     _directoryProducer = producer;
 }