クラス AbstractCreateSlotBuilder<T extends ChainedCommonCreateSlotBuilder<T>>
java.lang.Object
org.postgresql.replication.fluent.AbstractCreateSlotBuilder<T>
- すべての実装されたインタフェース:
ChainedCommonCreateSlotBuilder<T>
- 直系の既知のサブクラス:
LogicalCreateSlotBuilder
,PhysicalCreateSlotBuilder
public abstract class AbstractCreateSlotBuilder<T extends ChainedCommonCreateSlotBuilder<T>>
extends Object
implements ChainedCommonCreateSlotBuilder<T>
-
フィールドの概要
フィールド -
コンストラクタの概要
コンストラクタ -
メソッドの概要
修飾子とタイプメソッド説明protected abstract T
self()
withSlotName
(String slotName) Replication slots provide an automated way to ensure that the master does not remove WAL segments until they have been received by all standbys, and that the master does not remove rows which could cause a recovery conflict even when the standby is disconnected.Temporary slots are not saved to disk and are automatically dropped on error or when the session has finished.クラスから継承されたメソッド java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
インタフェースから継承されたメソッド org.postgresql.replication.fluent.ChainedCommonCreateSlotBuilder
make
-
フィールド詳細
-
slotName
-
temporaryOption
protected boolean temporaryOption -
connection
-
-
コンストラクタの詳細
-
AbstractCreateSlotBuilder
-
-
メソッドの詳細
-
self
-
withSlotName
インタフェースからコピーされた説明:ChainedCommonCreateSlotBuilder
Replication slots provide an automated way to ensure that the master does not remove WAL segments until they have been received by all standbys, and that the master does not remove rows which could cause a recovery conflict even when the standby is disconnected.- 定義:
withSlotName
インタフェース内ChainedCommonCreateSlotBuilder<T extends ChainedCommonCreateSlotBuilder<T>>
- パラメータ:
slotName
- not null unique replication slot name for create.- 戻り値:
- T a slot builder
-
withTemporaryOption
インタフェースからコピーされた説明:ChainedCommonCreateSlotBuilder
Temporary slots are not saved to disk and are automatically dropped on error or when the session has finished.
This feature is only supported by PostgreSQL versions >= 10.
- 定義:
withTemporaryOption
インタフェース内ChainedCommonCreateSlotBuilder<T extends ChainedCommonCreateSlotBuilder<T>>
- 戻り値:
- T a slot builder
- 例外:
SQLFeatureNotSupportedException
- thrown if PostgreSQL version is less than 10.
-