0

この Windows サービスを作成しました。上司は、構成ファイルの appsettings を使用して一時停止できるようにしたいと考えています。サービスを再起動しなくても、すぐに有効になります。

私の設定ファイルにはこれがあります:

<appSettings>
    <!-- If you want the DIS to pause for a while, give a valid number here.
    The value should be provided in minutes.-->     
    <add key="PauseDis" value="5"/>
</appSettings>

私のコードでは、次のことを行っています。

protected override void OnStart(string[] args)
    {
        thread = new Thread(WorkerThreadFunc);
        thread.Name = "Indigo.DataIntakeService Thread";
        thread.IsBackground = true;
        thread.Start();
    }

private void WorkerThreadFunc()
    {
        while (!shutdownEvent.WaitOne(0))
        {
            CheckFolders(toCheckFolders);
        }
    }private void CheckFolders(FoldersConfigSection folder)
    {
        using (FolderActions folderActions = new FolderActions())
        {
            PauseWorking();

            folderActions.DestinationFolders = (FoldersConfigSection)ConfigurationManager.GetSection("DestinationFolders");
            folderActions.BackUpFolders = (FoldersConfigSection)ConfigurationManager.GetSection("BackUpFolders");
            folderActions.TriggerName = ConfigurationManager.AppSettings["Trigger"];

            foreach (FolderElement folderElement in folder.FolderItems)
            {
                folderActions.SearchDirectoryAndCopyFiles(folderElement.Path, ConfigurationManager.AppSettings["Environment"]);
            }
        }
    }

    private void PauseWorking()
    {
        this.pauseTime = Convert.ToInt16(ConfigurationManager.AppSettings["PauseDis"]);
        LogManager.LogWarning(String.Format("PauseTime => {0}", this.pauseTime));

        if (this.pauseTime != 0)
        {
            // A pause was provided in the config-file, so we pause the thread.
            // The pause-time is provided in minutes. So we convert it to mil!iseconds.
            // 1 minute = 60 000 milliseconds
            LogManager.LogWarning(String.Format(Resources.WARN_ThreadSleeping, this.pauseTime));
            Thread.Sleep(this.pauseTime * 60000);
        }
    }

しかし、設定を再度読み取らないため、何か間違っているに違いありません。メモリにあるものだけを取ります。

4

2 に答える 2

0

また、構成値をゼロに設定する必要があります。そうしないと、次のループで再び一時停止します。

于 2013-06-24T10:33:41.570 に答える