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-11 11:56:23 +08:00
public interface IIoTDBSessionFactory:IDisposable
2025-04-07 16:44:25 +08:00
{
IIoTDBSessionPool GetSessionPool(bool useTableSession);
}
}