11 lines
246 B
C#
Raw Normal View History

2025-04-17 20:28:50 +08:00
namespace JiShe.CollectBus.IoTDB.Interface
2025-04-07 16:44:25 +08:00
{
/// <summary>
/// Session 工厂接口
/// </summary>
2025-04-21 10:17:40 +08:00
public interface IIoTDbSessionFactory:IDisposable
2025-04-07 16:44:25 +08:00
{
2025-04-21 10:17:40 +08:00
IIoTDbSessionPool GetSessionPool(bool useTableSession);
2025-04-07 16:44:25 +08:00
}
}