ISubscripData.cs 354 B

12345678910111213
  1. using EventBus;
  2. namespace TcpEventBus
  3. {
  4. public interface ISubscripData
  5. {
  6. public bool IsResultEvent { get; }
  7. public bool IsAnonymous { get; }
  8. public string EventName { get; }
  9. public void Subscrip(byte[] data, Properties properties);
  10. public void SubscripData(byte[] data, Properties properties);
  11. }
  12. }