You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.0 KiB
34 lines
1.0 KiB
2 years ago
|
|
||
|
using Microsoft.Extensions.DependencyInjection;
|
||
|
|
||
|
namespace Znyc.CloudCar.Core.Config
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Redis 消息队列 启动服务
|
||
|
/// </summary>
|
||
|
public static class RedisMessageQueueSetup
|
||
|
{
|
||
|
public static void AddRedisMessageQueueSetup(this IServiceCollection services)
|
||
|
{
|
||
|
if (services == null)
|
||
|
{
|
||
|
throw new ArgumentNullException(nameof(services));
|
||
|
}
|
||
|
//services.AddInitQ(m =>
|
||
|
//{
|
||
|
// //时间间隔
|
||
|
// m.SuspendTime = 1000;
|
||
|
// //redis服务器地址
|
||
|
// m.ConnectionString = AppSettingsConstVars.RedisConfigConnectionString;
|
||
|
// //对应的订阅者类,需要new一个实例对象,当然你也可以传参,比如日志对象
|
||
|
// m.ListSubscribe = new List<Type>()
|
||
|
// {
|
||
|
// typeof(LogingSubscribe)
|
||
|
// };
|
||
|
// //显示日志
|
||
|
// m.ShowLog = false;
|
||
|
//});
|
||
|
}
|
||
|
}
|
||
|
}
|