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.
capacityDefinition
capacity?: number;
channelId
An ID used for the client and server to connect the correct channels to each other.
channelIdDefinition
channelId: string;
handshakeAttemptTimeoutMs
The amount of milliseconds to wait for a reponse to each handshake.
handshakeAttemptTimeoutMsDefinition
handshakeAttemptTimeoutMs?: number;