Exemple #1
0
        protected RpcClientBase(string queueName) //: base(queueName)
        {
            this.BusType   = MessageBusTypeEnum.QUEUE;
            this.QueueName = queueName;

            this.Init();
        }
 protected MessagePublisherBase(string exchangeName, string exchangeType)
 {
     //this.MessageBusConfigName = config;
     this.BusType      = MessageBusTypeEnum.EXCHANGE;
     this.ExchangeName = exchangeName;
     this.ExchangeType = exchangeType;
 }
Exemple #3
0
        protected RpcClientBase(string exchangeName, string exchangeType)
        {
            this.BusType      = MessageBusTypeEnum.EXCHANGE;
            this.ExchangeName = exchangeName;
            this.ExchangeType = exchangeType;

            this.Init();
        }
 protected MessagePublisherBase(string queueName)
 {
     this.BusType   = MessageBusTypeEnum.QUEUE;
     this.QueueName = queueName;
 }