Click or drag to resize

BufferBlockMeasurementRequireConfirmation Property

Gets or sets a value indicating whether reception of this buffer block must be acknowledged by the subscriber with a ConfirmBufferBlock command.

Namespace: GSF.TimeSeries
Assembly: GSF.TimeSeries (in GSF.TimeSeries.dll) Version: 2.4.305-beta
Syntax
public bool RequireConfirmation { get; set; }
View Source

Property Value

Boolean
Remarks

Maps to IEEE Std 2664-2024 Table 8 bit 0x01 (REQUIRE CONFIRMATION) on the wire. Default value is true, preserving STTP's traditional retransmission semantics where the publisher caches each buffer block until acknowledged and retransmits on timeout.

When set to false, the buffer block is fire-and-forget: no retransmission cache entry is added, the retransmission timer is not (re)started, and the subscriber does not emit a confirmation. Useful for high-rate buffer-block streams over reliable transports (TCP) where the round-trip acknowledgement overhead is unnecessary.

See Also