123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Threading.Tasks;
- namespace Core.RabbitMQBus.EventBus
- {
- public interface IRabbitMqPublisher
- {
-
-
-
-
-
- void Publish(string queueName, object content);
-
-
-
-
-
-
- Task PublishAsync(string queueName, object content);
- }
- }
|