2024-02-02 17:14:41 +08:00
|
|
|
|
namespace MesETL.App.HostedServices.Abstractions
|
2024-01-12 16:50:37 +08:00
|
|
|
|
{
|
2024-01-29 09:29:16 +08:00
|
|
|
|
public interface IDataReader : IDisposable
|
2024-01-12 16:50:37 +08:00
|
|
|
|
{
|
2024-01-29 09:29:16 +08:00
|
|
|
|
DataRecord Current { get; }
|
|
|
|
|
ValueTask<bool> ReadAsync();
|
2024-01-12 16:50:37 +08:00
|
|
|
|
}
|
|
|
|
|
}
|