/
krasninja
/
querycat
Обзор
Документация
Войти
/
krasninja
/
querycat
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/QueryCat.Backend.Core/Execution/NullExecutionStatistic.cs
20 строк
533 B
Ivan Kozhin
Add more code comments
22 янв 2024, 18:36
22 янв 2024, 18:36
cda3b0a
Код
Авторство
О чём код?
namespace QueryCat.Backend.Core.Execution; /// <summary> /// Empty execution statistic implementation. /// </summary> public class NullExecutionStatistic : ExecutionStatistic { /// <summary> /// Static instance of <see cref="ExecutionStatistic" />. /// </summary> public static ExecutionStatistic Instance { get; } = new NullExecutionStatistic(); /// <inheritdoc /> public override void AddError(in RowErrorInfo info) { } /// <inheritdoc /> public override string Dump() => string.Empty; }