IRemoteGpoutManager.cs 362 B

12345678910111213141516
  1. using System;
  2. using FunnyCommon.Remoting.Protocol;
  3. using FunnyCommon.Shared;
  4. namespace FunnyCommon.Remoting.Interfaces
  5. {
  6. public interface IRemoteGpoutManager : IPiGpoutManager
  7. {
  8. Response SendCommand(Command command);
  9. Response[] SendCommandBulk(Command[] commands);
  10. IDisposable CreateBulk(int estimateMaxCount = 10);
  11. }
  12. }