/source/app/NOS.Registration/ISynchronizer.cs

http://github.com/agross/netopenspace · C# · 9 lines · 8 code · 1 blank · 0 comment · 0 complexity · 8ac8f3500a19f1a60af3e5f7dd9adcda MD5 · raw file

  1. using System;
  2. namespace NOS.Registration
  3. {
  4. public interface ISynchronizer
  5. {
  6. void Lock(Action synchronizedAction);
  7. }
  8. }