MassTransit is a free, open-source distributed application framework for .NET. MassTransit makes it easy to create applications and services that leverage message-based, loosely-coupled asynchronous communication for higher availability, reliabililty, and scalability.
MassTransit is Apache 2.0 licensed.
In order to get started with MassTransit, you can have a look at the documentation, which is located at https://docs.masstransit-project.com/.
install-package MassTransit.RabbitMq
then;
var bus = Bus.Factory.CreateUsingRabbitMq(sbc =>
{
var host = sbc.Host(new Uri("rabbitmq:https://localhost/"), h =>
{
h.Username("guest");
h.Password("guest");
});
sbc.ReceiveEndpoint(host, "my_queue", endpoint =>
{
endpoint.Handler<MyMessage>(async context =>
{
await Console.Out.WriteLineAsync($"Received: {context.Message.Value}");
});
});
});
using(bus.Start())
{
bus.Publish(new MyMessage{Value = "Hello, World."});
Console.ReadLine();
}
You will also need to set up RabbitMQ;
- Install Erlang using the installer. (Next -> Next ...)
- Install RabbitMQ using the installer. (Next -> Next ...) You now have a RabbitMQ broker (look in
services.msc
for it) that you can log into usingguest
,guest
. You can see message rates, routings and active consumers using this interface.
Please note
You need to add the management interface before you can login. First, from an elevated command prompt, change directory to the sbin folder within the RabbitMQ Server installation directory e.g. %PROGRAMFILES%\RabbitMQ Server\rabbitmq_server_3.5.3\sbin\
Next, run the following command to enable the rabbitmq management plugin:
rabbitmq-plugins.bat enable rabbitmq_management
Download from NuGet 'MassTransit' Search NuGet for MassTransit
Download the continuously integrated Nuget packages from AppVeyor.
We support RabbitMQ and Azure Service Bus message brokers.
While attendence is pretty light, there is a Gitter chat room available:
- Clone the source down to your machine.
git clone git:https://github.com/MassTransit/MassTransit.git
- Run
build.bat
git config --global core.autocrlf false
- Hack!
- Make a pull request.
MassTransit is built on AppVeyor
- .Net 4.5
Logo Design by The Agile Badger