Autofac http://docs.autofac.org/en/latest/lifetime/startup.html

 RabbitMQ

http://www.rabbitmq.com/dotnet-api-guide.htmlhttp://previous.rabbitmq.com/v3_4_x/getstarted.html

 

http://hwcrazy.com/b5fce358672411e3baa0000d601c5586/group/free_open_source_project/

MassTransit

ServiceBusFactory.New(sbc =>
{
  sbc.UseRabbitMq(r =>
                  {
                      r.ConfigureHost(new Uri("rabbitmq://hostname/vhost/queue"), h =>
                      {
                          h.SetUsername("username");
                          h.SetPassword("password");
                      });
                  });

  // other options
});

http://blog.csdn.net/lee_leefox/article/details/8533247

 

 MassTransit入门 http://www.cnblogs.com/wuya/p/Masstransit-guide.html

然后sbc.ReceiveFrom("msmq://localhost/test_queue")告诉bus我们收件箱地址(这个地址永远使用本机外网ip,不带“private$”),bus收到消息后会自动分发给所有订阅了这个消息的消费者(consumers )。

 

topshelf

http://docs.topshelf-project.com/en/latest/configuration/config_api.html

 

相关文章:

  • 2021-12-18
  • 2021-06-08
  • 2021-07-16
  • 2022-02-04
  • 2021-07-07
  • 2022-12-23
  • 2021-11-19
  • 2021-11-12
猜你喜欢
  • 2022-12-23
  • 2021-11-29
  • 2021-06-16
  • 2022-02-09
  • 2021-12-15
  • 2022-02-27
  • 2022-02-25
相关资源
相似解决方案