using System; using System.Collections.Generic; namespace Aitex.Core.RT.ConfigCenter { public interface ICommonConfig { void Subscribe(string module, string key, Func getter); object Poll(string key); Dictionary PollConfig(IEnumerable keys); string GetFileContent(string fileName); object GetConfig(string config); void SetConfig(string config, object value); } }