interface RemoteChannel.WriteConfig
Interface defining the write configuration for a RemoteChannel.
Implemented by: RemoteChannelClient.WriteChannelConfig
Properties
capacity
The maximum amount of messages the Channel can buffer. If 0, the channel is unbuffered and the communication is synchronous.
capacity
Definition
capacity?: number;
channelId
An ID used for the client and server to connect the correct channels to each other.
channelId
Definition
channelId: string;
handshakeAttemptTimeoutMs
The amount of milliseconds to wait for a reponse to each handshake.
handshakeAttemptTimeoutMs
Definition
handshakeAttemptTimeoutMs?: number;