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