DataCollectionWorld.cs 641 B

123456789101112131415161718192021222324252627
  1. using System.ComponentModel;
  2. using WCS.Core;
  3. using WCS.Service.Systems;
  4. namespace WCS.Service.Worlds
  5. {
  6. /// <summary>
  7. /// 数据采集世界,
  8. /// 该世界不进行任何的交互处理,仅进行硬件数据采集
  9. /// </summary>
  10. [Description("数据采集世界")]
  11. public class DataCollectionWorld : World
  12. {
  13. /// <summary>
  14. /// 构造函数
  15. /// </summary>
  16. public DataCollectionWorld()
  17. {
  18. Interval = 300;
  19. }
  20. protected override void AfterUpdate()
  21. {
  22. //Ltc.GetSystem<DataCollectionSysyem>().Invoke(true);
  23. }
  24. }
  25. }