using Apache.IoTDB.DataStructure;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.IoTDBProvider.Interface
{
///
/// Session 连接池
///
public interface IIoTDBSessionPool : IDisposable
{
///
/// 打开连接池
///
///
Task OpenAsync();
///
/// 插入数据
///
///
///
Task InsertAsync(Tablet tablet);
///
/// 查询数据
///
///
///
Task ExecuteQueryStatementAsync(string sql);
}
}