/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
- using System;
- namespace Manos.IO
- {
- /// <summary>
- /// Idle watchers are invoked on every loop iteration without
- /// waiting for external events. Thus, one continuously active
- /// idle watcher will cause the event loop never enter a resting
- /// state.
- /// <para>Corresponding event: none. The idle watcher just executes
- /// whenever it can.</para>
- /// </summary>
- public interface IIdleWatcher : IBaseWatcher
- {
- }
- }