| 1234567891011121314 | namespace Communicator;public interface ICommunicator : IDisposable{    bool Initialize(ICommunicatorProvider communicatorProvider);    void SubscribeDataItem(string dataKey, Action<object> callback);    void UnsubscribeDataItem(string dataKey, Action<object> callback);}public interface ICommunicatorProvider{    void DataChangedNotify(string dataKey, object rawData);}
 |