コード例 #1
0
 public ActiveMQListener(IActiveMQConnection connection)
 {
     _connection         = connection;
     _consumer           = connection.GetConsumer();
     _consumer.Listener += OnMessage;
 }
コード例 #2
0
 public ActiveMQSender(IActiveMQConnection connection)
 {
     _connection = connection;
     _producer   = connection.GetProducer();
 }