Last active
August 18, 2019 14:26
Use Azure Service Bus
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dotnet add package ServiceStack.Azure |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.Extensions.Configuration; | |
using Microsoft.Extensions.DependencyInjection; | |
using ServiceStack; | |
using ServiceStack.Messaging; | |
using ServiceStack.Azure; | |
using ServiceStack.Azure.Messaging; | |
namespace MyApp | |
{ | |
/** | |
Register Services you want available via MQ in your AppHost, e.g: | |
var mqServer = container.Resolve<IMessageService>(); | |
mqServer.RegisterHandler<MyRequest>(ExecuteMessage); | |
*/ | |
public class ConfigureMq : IConfigureServices, IAfterInitAppHost | |
{ | |
IConfiguration Configuration { get; } | |
public ConfigureMq(IConfiguration configuration) => Configuration = configuration; | |
public void Configure(IServiceCollection services) | |
{ | |
services.AddSingleton<IMessageService>(c => | |
new ServiceBusMqServer(Configuration.GetConnectionString("ServiceBus"))); | |
} | |
public void AfterInit(IAppHost appHost) | |
{ | |
appHost.Resolve<IMessageService>().Start(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment