forked from wmowm/InitQ
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathInitQ.Options.cs
43 lines (37 loc) · 1000 Bytes
/
InitQ.Options.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
using InitQ.Abstractions;
using System;
using System.Collections.Generic;
using System.Text;
namespace InitQ
{
public class InitQOptions
{
/// <summary>
/// redis连接字符串
/// </summary>
public string ConnectionString { get; set; }
/// <summary>
/// 没消息时挂起时长(毫秒)
/// </summary>
public int SuspendTime { get; set; }
/// <summary>
/// 每次消费消息间隔时间(毫秒)
/// </summary>
public int IntervalTime { get; set; }
/// <summary>
/// 是否显示日志
/// </summary>
public bool ShowLog { get; set; }
/// <summary>
/// 需要注入的类型
/// </summary>
public IList<Type> ListSubscribe { get; set; }
public InitQOptions()
{
ConnectionString = "";
IntervalTime = 0;
SuspendTime = 1000;
ShowLog = false;
}
}
}