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計時器間隔經過時引發的事件。 |