Configuration options for setting up the transport mechanism for ESP communication.

This configuration includes the type of transport and any additional metadata required for the specified mode.

interface ESPTransportConfig {
    metadata: Record<string, any>;
    type: ESPTransportMode;
}

Properties

Properties

metadata: Record<string, any>

Additional metadata for the transport configuration.

This can include any key-value pairs relevant to the chosen transport mode.

The transport mode, specifying if the communication is local or cloud-based.