DispatcherQueueTimer クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
時間間隔が経過した後、 DispatcherQueue で定期的にタスクを実行します。
public ref class DispatcherQueueTimer sealed
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.Foundation.LiftedContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
class DispatcherQueueTimer final
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.Foundation.WindowsAppSDKContract, 65536)]
class DispatcherQueueTimer final
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.Foundation.LiftedContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
public sealed class DispatcherQueueTimer
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.Foundation.WindowsAppSDKContract), 65536)]
public sealed class DispatcherQueueTimer
Public NotInheritable Class DispatcherQueueTimer
- 継承
- 属性
例
public void ConfigureRepeatingTimer()
{
_queueController = DispatcherQueueController.CreateOnDedicatedThread();
_queue = _queueController.DispatcherQueue;
_repeatingTimer = _queue.CreateTimer ();
_repeatingTimer.Interval = TimeSpan.FromSeconds(5);
// The tick handler will be invoked repeatedly after every 5
// seconds on the dedicated thread.
_repeatingTimer.Tick += (s, e) =>
{
DoWork();
};
// Start the Timer
_repeatingTimer.Start();
}
private DispatcherQueue _queue;
private DispatcherQueueController _queueController;
private DispatcherQueueTimer _repeatingTimer;
注釈
システムは、指定された期間が経過した後にのみイベント ハンドラーを呼び出すように保証します。 ただし、キューに他の保留中の作業項目がある場合は、ティック ハンドラーが呼び出されるまでに多少の遅延が発生する可能性があります。
タイマー タスクは、アイドルよりも低い優先度で実行されます。
タイマーは DispatcherQueue イベント ループを維持しません。 DispatcherQueue イベント ループが停止した後に作成されたタイマーは処理されません。
プロパティ
Interval |
タイマーの間隔を取得および設定します。 |
IsRepeating |
タイマーが繰り返し実行されているかどうかを示す値を取得または設定します。 |
IsRunning |
タイマーが現在実行されているかどうかを示します。 |
メソッド
Start() |
DispatcherQueue タイマーを開始します。 |
Stop() |
DispatcherQueue タイマーを停止します。 |
イベント
Tick |
DispatcherQueue タイマー間隔が経過したときに発生するイベント。 |