-
Notifications
You must be signed in to change notification settings - Fork 10
Quick Start
Mike Hadlow edited this page Jan 27, 2014
·
15 revisions
Welcome to EasyNetQ. This guide shows you how to get up and running with EasyNetQ in about 10 minutes.
EasyNetQ is a simple to use client API for RabbitMQ. So first install RabbitMQ:
- Install Erlang: http://www.erlang.org/download.html
- Install the RabbitMQ server: http://www.rabbitmq.com/download.html
- You'll probably want to enable the RabbitMQ management API too: http://www.rabbitmq.com/management.html
Now you should be able to navigate to the RabbitMQ management URL:
http://localhost:15672/
Next open Visual Studio and create a new solution named EasyNetQTest with three C# projects:
Messages (Class Library)
Publisher (Console Application)
Subscriber (Console Application)
Open the NuGet Package Manager Console and install EasyNetQ in both the Publisher and Subscriber projects by typing:
Install-Package EasyNetQ -ProjectName Publisher
Install-Package EasyNetQ -ProjectName Subscriber
In the Messages project create a new class TextMessage.cs:
namespace Messages
{
public class TextMessage
{
public string Text { get; set; }
}
}
Add a reference to the Messages project to both the Publisher and Subscriber projects.
Open the Program.cs class in the Publisher project and type in the following code:
using System;
using EasyNetQ;
using Messages;
namespace Publisher
{
class Program
{
static void Main(string[] args)
{
using (var bus = RabbitHutch.CreateBus("host=localhost"))
{
var input = "";
Console.WriteLine("Enter a message. 'Quit' to quit.");
while ((input = Console.ReadLine()) != "Quit")
{
bus.Publish(new TextMessage
{
Text = input
});
}
}
}
}
}
- Quick Start
- Introduction
- Casing in point: Topics and topics, Subscriptions and subscriptions
- Installing AzureNetQ
- Connecting to Service Bus
- Logging
- Publish
- Subscribe
- Request Response
- Send Receive
- Topic Based Routing
- Controlling Queue names
- Polymorphic Publish and Subscribe
- Scheduling Events with Future Publish
- Auto Subscriber
- Non Generic Publish & Subscription Extension Methods
- Replacing AzureNetQ Components
- Using a DI Container