34 lines
957 B
C#
Raw Normal View History

2025-04-17 20:28:50 +08:00
using JiShe.CollectBus.IoTDB.Options;
using Microsoft.Extensions.Options;
using Volo.Abp.DependencyInjection;
2025-04-07 16:44:25 +08:00
2025-04-17 20:28:50 +08:00
namespace JiShe.CollectBus.IoTDB.Context
2025-04-07 16:44:25 +08:00
{
/// <summary>
/// IoTDB SessionPool 运行时上下文
/// </summary>
public class IoTDBRuntimeContext: IScopedDependency
2025-04-07 16:44:25 +08:00
{
private readonly bool _defaultValue;
public IoTDBRuntimeContext(IOptions<IoTDbOptions> options)
2025-04-07 16:44:25 +08:00
{
_defaultValue = options.Value.UseTableSessionPoolByDefault;
UseTableSessionPool = _defaultValue;
}
/// <summary>
2025-04-21 09:45:30 +08:00
/// 存储模型切换标识是否使用table模型存储, 默认为false标识tree模型存储
2025-04-07 16:44:25 +08:00
/// </summary>
public bool UseTableSessionPool { get; set; }
/// <summary>
/// 重置为默认值
/// </summary>
public void ResetToDefault()
{
UseTableSessionPool = _defaultValue;
}
}
}