Last active
June 23, 2019 08:33
-
-
Save gistlyn/18254cb98edbfc16ea24d0f7453edc24 to your computer and use it in GitHub Desktop.
Use Memory Background MQ
This file contains hidden or 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; | |
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 | |
{ | |
public void Configure(IServiceCollection services) | |
{ | |
services.AddSingleton<IMessageService>(c => new BackgroundMqService()); | |
} | |
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