34 lines
957 B
C#
34 lines
957 B
C#
using JiShe.CollectBus.IoTDB.Options;
|
||
using Microsoft.Extensions.Options;
|
||
using Volo.Abp.DependencyInjection;
|
||
|
||
namespace JiShe.CollectBus.IoTDB.Context
|
||
{
|
||
/// <summary>
|
||
/// IoTDB SessionPool 运行时上下文
|
||
/// </summary>
|
||
public class IoTDBRuntimeContext: IScopedDependency
|
||
{
|
||
private readonly bool _defaultValue;
|
||
|
||
public IoTDBRuntimeContext(IOptions<IoTDbOptions> options)
|
||
{
|
||
_defaultValue = options.Value.UseTableSessionPoolByDefault;
|
||
UseTableSessionPool = _defaultValue;
|
||
}
|
||
|
||
/// <summary>
|
||
/// 存储模型切换标识,是否使用table模型存储, 默认为false,标识tree模型存储
|
||
/// </summary>
|
||
public bool UseTableSessionPool { get; set; }
|
||
|
||
/// <summary>
|
||
/// 重置为默认值
|
||
/// </summary>
|
||
public void ResetToDefault()
|
||
{
|
||
UseTableSessionPool = _defaultValue;
|
||
}
|
||
}
|
||
}
|