/
dev-npgsql
/
npgsql
Обзор
Документация
Войти
/
dev-npgsql
/
npgsql
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v5.0.18
src/Npgsql/Replication/PhysicalReplicationSlot.cs
19 строк
749 B
Shay Rojansky
Expose public constructor for PhysicalReplicationSlot (#3350)
17 ноя 2020, 00:43
17 ноя 2020, 00:43
b6a2598
Код
Авторство
О чём код?
namespace Npgsql.Replication { /// <summary> /// Wraps a replication slot that uses physical replication. /// </summary> public class PhysicalReplicationSlot : ReplicationSlot { /// <summary> /// Creates a new <see cref="PhysicalReplicationSlot"/> instance. /// </summary> /// <remarks> /// Create a <see cref="PhysicalReplicationSlot"/> instance with this constructor to wrap an existing PostgreSQL replication slot /// that has been initialized for physical replication. /// </remarks> /// <param name="slotName">The name of the existing replication slot</param> public PhysicalReplicationSlot(string slotName) : base(slotName) { } } }