Skip to content

Instantly share code, notes, and snippets.

@gistlyn
Last active June 23, 2019 08:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gistlyn/18254cb98edbfc16ea24d0f7453edc24 to your computer and use it in GitHub Desktop.
Save gistlyn/18254cb98edbfc16ea24d0f7453edc24 to your computer and use it in GitHub Desktop.
Use Memory Background MQ
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