IAzureServiceBusService.cs 312 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.Module.AzureServiceBus
  5. {
  6. public interface IAzureServiceBusService
  7. {
  8. public TopClient GetTopClient(string TopName);
  9. public SubClient GetSubClient(string SubName);
  10. void init();
  11. }
  12. }