IPoller.cs 154 B

12345678910111213
  1. using System;
  2. namespace TNet
  3. {
  4. public interface IPoller
  5. {
  6. void Add(Action action);
  7. void RunOnce(int timeout);
  8. void Run();
  9. }
  10. }