Last active
August 4, 2024 03:28
-
-
Save gistlyn/f047da23d16411849039945698be7380 to your computer and use it in GitHub Desktop.
Use Azure Service Bus MQ
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; | |
[assembly: HostingStartup(typeof(MyApp.ConfigureMq))] | |
namespace MyApp; | |
/** | |
Register Services you want available via MQ in your AppHost, e.g: | |
var mqServer = appHost.Resolve<IMessageService>(); | |
mqServer.RegisterHandler<MyRequest>(ExecuteMessage); | |
*/ | |
public class ConfigureMq : IHostingStartup | |
{ | |
public void Configure(IWebHostBuilder builder) => builder | |
.ConfigureServices((context, services) => { | |
services.AddSingleton<IMessageService>(c => | |
new ServiceBusMqServer(context.Configuration.GetConnectionString("ServiceBus"))); | |
}) | |
.ConfigureAppHost(afterAppHostInit: appHost => { | |
appHost.Resolve<IMessageService>().Start(); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment