/src/Manos.IO/Libev/LoopType.cs

http://github.com/jacksonh/manos · C# · 12 lines · 10 code · 2 blank · 0 comment · 0 complexity · 7304bd0f1b3793b73c7c342d9350f5b5 MD5 · raw file

  1. using System;
  2. namespace Libev
  3. {
  4. enum LoopType
  5. {
  6. Blocking,
  7. NonBlocking,
  8. Oneshot,
  9. }
  10. }