/
dev-npgsql
/
npgsql
Обзор
Документация
Войти
/
dev-npgsql
/
npgsql
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
test-logs
src/Npgsql/Replication/PgOutput/PgOutputStreamingMode.cs
23 строки
681 B
Nino Floris
Remove obsolete UTF-8 BOMs (#6542)
13 апр 2026, 17:13
Не верифицирован
13 апр 2026, 17:13
5225216
Код
Авторство
О чём код?
namespace Npgsql.Replication.PgOutput; /// <summary> /// Option to enable streaming of in-progress transactions. /// Minimum protocol version 2 is required to turn it on. Minimum protocol version 4 is required for the "parallel" option. /// </summary> public enum PgOutputStreamingMode { /// <summary> /// Disable streaming of in-progress transactions /// </summary> Off, /// <summary> /// Enable streaming of in-progress transactions /// </summary> On, /// <summary> /// Enable streaming of in-progress transactions and enable sending extra information with some messages to be used for parallelisation /// </summary> Parallel }