DispatcherTimerHelper.cs 281 B

12345678910111213
  1. using Avalonia.Threading;
  2. namespace Avalonia.UnitTests;
  3. public static class DispatcherTimerUtils
  4. {
  5. public static void ForceFire(this DispatcherTimer timer)
  6. {
  7. timer.Promote();
  8. timer.Dispatcher.RemoveTimer(timer);
  9. timer.Dispatcher.RunJobs();
  10. }
  11. }