https://github.com/haf/masstransit-azureservicebus
Azure Service Bus Transport for MassTransit
https://github.com/haf/masstransit-azureservicebus
Last synced: about 2 months ago
JSON representation
Azure Service Bus Transport for MassTransit
- Host: GitHub
- URL: https://github.com/haf/masstransit-azureservicebus
- Owner: haf
- License: apache-2.0
- Created: 2012-01-31T19:08:36.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-05-15T15:03:56.000Z (about 13 years ago)
- Last Synced: 2025-03-29T20:51:12.388Z (3 months ago)
- Language: C#
- Homepage:
- Size: 4.78 MB
- Stars: 4
- Watchers: 1
- Forks: 27
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MassTransit AzureServiceBus Transport
A transport over AppFabric Service Bus in Azure. Currently capable of pub-sub and sending to endpoints.
### First, get your Azure account
https://www.windowsazure.com/en-us/develop/net/how-to-guides/service-bus-topics/#what-is. It's free the first three months.
### Second, configure MassTransit with the transport
```
using (ServiceBusFactory.New(sbc =>
{
sbc.ReceiveFrom(
"azure-sb://owner:bjOAWQJalkmd9LKas0lsdklkdw4mAHwKZUJ1jKwTLdc=@myNamespace/my-application"
);
sbc.UseAzureServiceBus();
sbc.UseAzureServiceBusRouting();
}))
{
// use the bus here...
}
```or alternatively:
```
using (ServiceBusFactory.New(sbc =>
{
sbc.ReceiveFromComponents("owner", "bjOAWQJalkmd9LKas0lsdklkdw4mAHwKZUJ1jKwTLdc=",
"myNamespace", "my-application");
sbc.UseAzureServiceBus();
sbc.UseAzureServiceBusRouting();
}))
{
// use the bus here...
}
```## Aims:
* `GetEndpoint(...).Send(this ..., T msg)`. [Done]
* Sub-Pub over message types [Done]
* Binding to specific topic on publish of message if subscriber exists in bus. [Done]
* Purging of queues by deleting them and re-creating them. [Done]
* Smooth asynchronous transient fault handling [Done] (AsyncRetry.fs)
* Maximum performance. A middle ground of low latency (50 ms) and high throughput (batching, concurrent receives). [Done]
* Polymorphic Publish-Subscribe [Ongoing]
## Compiling the codeIn order to compile the tests, you have to have a class called `AccountDetails` similar to this:
```
using System;
using MassTransit.Transports.AzureServiceBus.Configuration;namespace MassTransit.Transports.AzureServiceBus.Tests.Framework
{
// WARNING: note: DO NOT RENAME this file, or you'll commit the account details///
/// Actual AccountDetails
///
public class AccountDetails
: PreSharedKeyCredentials
{
static readonly PreSharedKeyCredentials _instance = new Credentials(IssuerName, Key, Namespace, Application);private static string ENV(string name)
{
return Environment.GetEnvironmentVariable(name);
}public static string Key
{
get { return ENV("AccountDetailsKey") ?? "adfmald0f9j23lkmsd+Ww4mAHwKZUJ1jKwTLdc="; }
}public static string IssuerName
{
get { return ENV("AccountDetailsIssuerName") ?? "owner"; }
}public static string Namespace
{
get { return ENV("AccountDetailsNamespace") ?? "mt"; }
}public static string Application
{
get { return ENV("Application") ?? "my-application"; }
}string PreSharedKeyCredentials.IssuerName
{
get { return _instance.IssuerName; }
}string PreSharedKeyCredentials.Key
{
get { return _instance.Key; }
}string PreSharedKeyCredentials.Namespace
{
get { return _instance.Namespace; }
}string PreSharedKeyCredentials.Application
{
get { return Application; }
}public Uri BuildUri(string application = null)
{
return _instance.BuildUri(application);
}public PreSharedKeyCredentials WithApplication(string application)
{
return _instance.WithApplication(application);
}
}
}
```Place this file in `src\MassTransit.Transports.AzureServiceBus.Tests\Framework\AccountDetails.cs`.
## Contributing
Download the code. Hack on it in a feature branch like described with [this flow](https://github.com/haf/Documently/wiki/Git-Workflow). Send a pull request to /develop from your feature branch.