Skip to main content

interface RemoteChannelClient.CrossChannelConfig

Interface defining the configuration options for creating a remote Channel.Cross channel

Extends: RemoteChannel.CrossConfig

Properties

rcsChannelTimeoutMs

The amount of ms to wait when blocked sending to the RCS channel.

Definition

rcsChannelTimeoutMs?: number;

read

The channel read configuration.

Definition

read: {
      channelId: string;
      capacity?: number;
      validator?: (value: any) => boolean;
      maxHandshakeAttempts?: number;
      handshakeAttemptTimeoutMs?: number;
    };

Overrides

CrossConfig.read

write

The channel write configuration.

Definition

write: {
      channelId: string;
      capacity?: number;
      validator?: (value: any) => boolean;
      maxHandshakeAttempts?: number;
      handshakeAttemptTimeoutMs?: number;
    };

Overrides

CrossConfig.write