SchedulerBuffer.cs 494 B

123456789101112131415161718192021
  1. using MECF.Framework.Common.Equipment;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace CyberX8_RT.Schedulers
  8. {
  9. public class SchedulerBuffer : SchedulerModule
  10. {
  11. /// <summary>
  12. /// 构造函数
  13. /// </summary>
  14. /// <param name="module"></param>
  15. public SchedulerBuffer(ModuleName moduleName) : base(moduleName.ToString())
  16. {
  17. }
  18. }
  19. }