ReliableOrderedTransport
Defined in: net/NetChannel.ts:25
A transport that delivers every frame, once, in send order. NetChannel needs no such promise; replication does — its client applies the inbox in ARRIVAL order because that IS the authority’s order. Declaring the marker is a claim about the link, not a feature to switch on.
Extends
Section titled “Extends”Properties
Section titled “Properties”delivery
Section titled “delivery”
readonlydelivery:"reliable-ordered"
Defined in: net/NetChannel.ts:26
Methods
Section titled “Methods”on(
event,handler): () =>void
Defined in: net/NetChannel.ts:16
Subscribe to incoming frames. Returns an unsubscribe function.
Parameters
Section titled “Parameters”"message"
handler
Section titled “handler”(data) => void
Returns
Section titled “Returns”() => void
Inherited from
Section titled “Inherited from”send()
Section titled “send()”send(
data):void
Defined in: net/NetChannel.ts:14
Parameters
Section titled “Parameters”string | ArrayBuffer
Returns
Section titled “Returns”void