2025-04-21 10:17:40 +08:00

11 lines
246 B
C#

namespace JiShe.CollectBus.IoTDB.Interface
{
/// <summary>
/// Session 工厂接口
/// </summary>
public interface IIoTDbSessionFactory:IDisposable
{
IIoTDbSessionPool GetSessionPool(bool useTableSession);
}
}