コード例 #1
0
 public RabbitMQConsumer(RabbitMQConnector connection)
 {
     _connection = connection;
 }
コード例 #2
0
        public IRabbitMQProducer CreateProducer(QueueId queueId)
        {
            var connector = new RabbitMQConnector(_options, queueId, LoggerFactory.CreateLogger($"{typeof(RabbitMQProducer).FullName}.{queueId}"));

            return(new RabbitMQProducer(connector));
        }
コード例 #3
0
 public RabbitMQProducer(RabbitMQConnector connection)
 {
     _connection = connection;
 }