/src/Manos.IO/Manos.IO/IIdleWatcher.cs

http://github.com/jacksonh/manos · C# · 17 lines · 7 code · 2 blank · 8 comment · 0 complexity · 515ff4e1f237433d10ba7d5bdc24b5bc MD5 · raw file

  1. using System;
  2. namespace Manos.IO
  3. {
  4. /// <summary>
  5. /// Idle watchers are invoked on every loop iteration without
  6. /// waiting for external events. Thus, one continuously active
  7. /// idle watcher will cause the event loop never enter a resting
  8. /// state.
  9. /// <para>Corresponding event: none. The idle watcher just executes
  10. /// whenever it can.</para>
  11. /// </summary>
  12. public interface IIdleWatcher : IBaseWatcher
  13. {
  14. }
  15. }