/
dev-npgsql
/
npgsql
Обзор
Документация
Войти
/
dev-npgsql
/
npgsql
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v6.0.12
src/Npgsql/Replication/PhysicalReplicationSlot.cs
18 строк
682 B
Shay Rojansky
Apply file-scoped namespaces for 6.0 (#4298)
28 янв 2022, 15:13
Не верифицирован
28 янв 2022, 15:13
2e0ad2d
Код
Авторство
О чём код?
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) { } }