2025-04-07 16:44:25 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace JiShe.CollectBus.IoTDBProvider.Interface
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <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);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|