Request

data class Request(val site: SiteIdentifier, val count: UInt) : Message.Outgoing

Indicates that the Outgoing side of the Link is ready to receive some events. A Request message can not be sent before the Incoming.Ready message has already been received.

A Request works as follows :

Parameters

site

the site identifier for which we're interested in this sequence number.

count

how many events were requested.

Constructors

Link copied to clipboard
fun Request(site: SiteIdentifier, count: UInt)

Properties

Link copied to clipboard
val count: UInt
Link copied to clipboard
val site: SiteIdentifier