Acknowledge

data class Acknowledge(val site: SiteIdentifier, val nextSeqno: SequenceNumber) : Message.Outgoing

Indicates the next sequence number that is not known by the Outgoing side for a specific site. The Incoming side will only messages for acknowledged sites with a remaining request count greater than 0.

Receiving an Acknowledge resets the Request count total to zero.

Parameters

site

the identifier for the site.

nextSeqno

the next expected sequence number for this site.

Constructors

Link copied to clipboard
fun Acknowledge(site: SiteIdentifier, nextSeqno: SequenceNumber)

Properties

Link copied to clipboard
val nextSeqno: SequenceNumber
Link copied to clipboard
val site: SiteIdentifier