public interface ChainedCommonStreamBuilder<T extends ChainedCommonStreamBuilder<T>>
Modifier and Type | Method and Description |
---|---|
T |
withAutomaticFlush(boolean automaticFlush)
Specify if backend should flush data after receive notification from client.
|
T |
withSlotName(java.lang.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.
|
T |
withStartPosition(LogSequenceNumber lsn)
Specify start position from which backend will start stream changes.
|
T |
withStatusInterval(int time,
java.util.concurrent.TimeUnit format)
Specifies the number of time between status packets sent back to the server.
|
T withSlotName(java.lang.String slotName)
slotName
- not null replication slot already exists on server.T withStatusInterval(int time, java.util.concurrent.TimeUnit format)
time
- positive timeformat
- format for specified timeT withStartPosition(LogSequenceNumber lsn)
lsn
- not null position from which need start replicate changesT withAutomaticFlush(boolean automaticFlush)
automaticFlush
- true if advance FlushLSN to ServerLSN data after receive notificationCopyright © 2025 PostgreSQL Global Development Group. All rights reserved.