Ejemplo n.º 1
0
        private static void RM_EngineStarted(object sender, EventArgs e)
        {
            NumberOfStartedEngines++;

            //Retrieve the UI of the Repository
            RepositoryUI RUI = ListOfRepositoryUI.FirstOrDefault(x => x.RepositoryId.Equals(((Repository)sender).RepositoryId));

            if (RUI != null)
            {
                RUI.StartDebugger();
            }
            if (MainUploadDownloadCountChanged != null)
            {
                MainUploadDownloadCountChanged(sender, null);
            }
        }