/src/Manos/Manos.Threading/IBoundary.cs

http://github.com/jacksonh/manos · C# · 9 lines · 8 code · 1 blank · 0 comment · 0 complexity · 0b9b7d560d1e4d67a654a4e7d67fdb48 MD5 · raw file

  1. using System;
  2. namespace Manos.Threading
  3. {
  4. public interface IBoundary
  5. {
  6. void ExecuteOnTargetLoop (Action action);
  7. }
  8. }