RunnableExtensions.cs 470 B

1234567891011121314151617
  1. namespace Abp.Threading
  2. {
  3. /// <summary>
  4. /// Some extension methods for <see cref="IRunnable"/>.
  5. /// </summary>
  6. public static class RunnableExtensions
  7. {
  8. /// <summary>
  9. /// Calls <see cref="IRunnable.Stop"/> and then <see cref="IRunnable.WaitToStop"/>.
  10. /// </summary>
  11. public static void StopAndWaitToStop(this IRunnable runnable)
  12. {
  13. runnable.Stop();
  14. runnable.WaitToStop();
  15. }
  16. }
  17. }