ISCManager.cs 554 B

1234567891011121314151617181920
  1. using System.Collections.Generic;
  2. using Aitex.Core.RT.ConfigCenter;
  3. namespace Aitex.Core.RT.SCCore
  4. {
  5. public interface ISCManager
  6. {
  7. bool Initialize();
  8. void Terminate();
  9. object GetItemValue(string name);
  10. T GetItem<T>(string name) where T : class;
  11. SCString GetStringItem(string name);
  12. bool UpdateConfiguration(string groupName, List<ConfigEntry> lstEntry);
  13. string GetXmlConfig(string path);
  14. void GenerateEnumName();
  15. void SetItemValue(string name, object value);
  16. }
  17. }