using EventBus; namespace TcpEventBus { public interface ISubscripData { public bool IsResultEvent { get; } public bool IsAnonymous { get; } public string EventName { get; } public void Subscrip(byte[] data, Properties properties); public void SubscripData(byte[] data, Properties properties); } }