回答:
どちらSystem.Timers.Timer
とSystem.Threading.Timer
サービスのために動作します。
あなたは避けたいのタイマーがあるSystem.Web.UI.Timer
とSystem.Windows.Forms.Timer
、ASPアプリケーションとWinFormsのために、それぞれです。それらを使用すると、サービスは追加のアセンブリをロードしますが、これは、構築しているアプリケーションのタイプには実際には必要ありません。
System.Timers.Timer
次の例のように使用します(また、ティム・ロビンソンの回答で述べられているように、ガベージコレクションを防ぐためにクラスレベル変数を使用していることを確認してください)。
using System;
using System.Timers;
public class Timer1
{
private static System.Timers.Timer aTimer;
public static void Main()
{
// Normally, the timer is declared at the class level,
// so that it stays in scope as long as it is needed.
// If the timer is declared in a long-running method,
// KeepAlive must be used to prevent the JIT compiler
// from allowing aggressive garbage collection to occur
// before the method ends. (See end of method.)
//System.Timers.Timer aTimer;
// Create a timer with a ten second interval.
aTimer = new System.Timers.Timer(10000);
// Hook up the Elapsed event for the timer.
aTimer.Elapsed += new ElapsedEventHandler(OnTimedEvent);
// Set the Interval to 2 seconds (2000 milliseconds).
aTimer.Interval = 2000;
aTimer.Enabled = true;
Console.WriteLine("Press the Enter key to exit the program.");
Console.ReadLine();
// If the timer is declared in a long-running method, use
// KeepAlive to prevent garbage collection from occurring
// before the method ends.
//GC.KeepAlive(aTimer);
}
// Specify what you want to happen when the Elapsed event is
// raised.
private static void OnTimedEvent(object source, ElapsedEventArgs e)
{
Console.WriteLine("The Elapsed event was raised at {0}", e.SignalTime);
}
}
/* This code example produces output similar to the following:
Press the Enter key to exit the program.
The Elapsed event was raised at 5/20/2007 8:42:27 PM
The Elapsed event was raised at 5/20/2007 8:42:29 PM
The Elapsed event was raised at 5/20/2007 8:42:31 PM
...
*/
を選択するとSystem.Threading.Timer
、次のように使用できます。
using System;
using System.Threading;
class TimerExample
{
static void Main()
{
AutoResetEvent autoEvent = new AutoResetEvent(false);
StatusChecker statusChecker = new StatusChecker(10);
// Create the delegate that invokes methods for the timer.
TimerCallback timerDelegate =
new TimerCallback(statusChecker.CheckStatus);
// Create a timer that signals the delegate to invoke
// CheckStatus after one second, and every 1/4 second
// thereafter.
Console.WriteLine("{0} Creating timer.\n",
DateTime.Now.ToString("h:mm:ss.fff"));
Timer stateTimer =
new Timer(timerDelegate, autoEvent, 1000, 250);
// When autoEvent signals, change the period to every
// 1/2 second.
autoEvent.WaitOne(5000, false);
stateTimer.Change(0, 500);
Console.WriteLine("\nChanging period.\n");
// When autoEvent signals the second time, dispose of
// the timer.
autoEvent.WaitOne(5000, false);
stateTimer.Dispose();
Console.WriteLine("\nDestroying timer.");
}
}
class StatusChecker
{
int invokeCount, maxCount;
public StatusChecker(int count)
{
invokeCount = 0;
maxCount = count;
}
// This method is called by the timer delegate.
public void CheckStatus(Object stateInfo)
{
AutoResetEvent autoEvent = (AutoResetEvent)stateInfo;
Console.WriteLine("{0} Checking status {1,2}.",
DateTime.Now.ToString("h:mm:ss.fff"),
(++invokeCount).ToString());
if(invokeCount == maxCount)
{
// Reset the counter and signal Main.
invokeCount = 0;
autoEvent.Set();
}
}
}
どちらの例もMSDNページからのものです。
これにはサービスを使用しないでください。通常のアプリケーションを作成し、それを実行するスケジュールされたタスクを作成します。
これは一般的に行われているベストプラクティスです。 ジョン・ギャロウェイは私に同意します。または多分その逆です。 どちらの方法でも、タイマーから実行される断続的なタスクを実行するWindowsサービスを作成することはベストプラクティスではありません。
「タイマーを実行するWindowsサービスを作成している場合は、ソリューションを再評価する必要があります。」
–Jon Galloway、ASP.NET MVCコミュニティプログラムマネージャー、著者、パートタイムスーパーヒーロー
どちらでも問題ありません。実際、System.Threading.TimerはSystem.Timers.Timerを内部的に使用します。
そうは言っても、System.Timers.Timerを誤用するのは簡単です。Timerオブジェクトを変数のどこかに格納しないと、ガベージコレクションが行われる可能性があります。その場合、タイマーは作動しなくなります。Disposeメソッドを呼び出してタイマーを停止するか、少し優れたラッパーであるSystem.Threading.Timerクラスを使用します。
これまでに見た問題は何ですか?
System.Timers.Timer
スローされた例外を処理できないためにWindows Phoneがアクセスできない理由を説明するものだと思います。
別のアプローチを検討するのが最善かもしれない以前のコメントに同意します。私の提案は、コンソールアプリケーションを作成し、Windowsスケジューラを使用することです。
この意志:
私はこのスレッドが少し古いことを知っていますが、私が持っていた特定のシナリオに役立ちましたSystem.Threading.Timer
。良いアプローチになるかもしれない別の理由があることに注意することは価値があると思いました。時間がかかる可能性のあるジョブを定期的に実行する必要があり、ジョブ間で待機期間全体が使用されるようにしたい場合、または前のジョブが完了する前にジョブを再度実行したくない場合ジョブはタイマー期間よりも長くかかります。以下を使用できます。
using System;
using System.ServiceProcess;
using System.Threading;
public partial class TimerExampleService : ServiceBase
{
private AutoResetEvent AutoEventInstance { get; set; }
private StatusChecker StatusCheckerInstance { get; set; }
private Timer StateTimer { get; set; }
public int TimerInterval { get; set; }
public CaseIndexingService()
{
InitializeComponent();
TimerInterval = 300000;
}
protected override void OnStart(string[] args)
{
AutoEventInstance = new AutoResetEvent(false);
StatusCheckerInstance = new StatusChecker();
// Create the delegate that invokes methods for the timer.
TimerCallback timerDelegate =
new TimerCallback(StatusCheckerInstance.CheckStatus);
// Create a timer that signals the delegate to invoke
// 1.CheckStatus immediately,
// 2.Wait until the job is finished,
// 3.then wait 5 minutes before executing again.
// 4.Repeat from point 2.
Console.WriteLine("{0} Creating timer.\n",
DateTime.Now.ToString("h:mm:ss.fff"));
//Start Immediately but don't run again.
StateTimer = new Timer(timerDelegate, AutoEventInstance, 0, Timeout.Infinite);
while (StateTimer != null)
{
//Wait until the job is done
AutoEventInstance.WaitOne();
//Wait for 5 minutes before starting the job again.
StateTimer.Change(TimerInterval, Timeout.Infinite);
}
//If the Job somehow takes longer than 5 minutes to complete then it wont matter because we will always wait another 5 minutes before running again.
}
protected override void OnStop()
{
StateTimer.Dispose();
}
}
class StatusChecker
{
public StatusChecker()
{
}
// This method is called by the timer delegate.
public void CheckStatus(Object stateInfo)
{
AutoResetEvent autoEvent = (AutoResetEvent)stateInfo;
Console.WriteLine("{0} Start Checking status.",
DateTime.Now.ToString("h:mm:ss.fff"));
//This job takes time to run. For example purposes, I put a delay in here.
int milliseconds = 5000;
Thread.Sleep(milliseconds);
//Job is now done running and the timer can now be reset to wait for the next interval
Console.WriteLine("{0} Done Checking status.",
DateTime.Now.ToString("h:mm:ss.fff"));
autoEvent.Set();
}
}