Type Alias: FileTransportConfig
type FileTransportConfig = {
file_path: string;
channel_filter?: string;
default_channel?: string;
};
Defined in: livelink.clients/livelink.agent/sources/data/transports/PlaybackTransport.ts:92
Configuration of the deprecated "file" transport kind.
Deprecated
Use PlaybackTransportConfig with source: { file_path } and the "playback"
kind.
Properties
file_path
file_path: string;
Defined in: livelink.clients/livelink.agent/sources/data/transports/PlaybackTransport.ts:94
Path of the playback file. Relative paths resolve against the process working directory.
channel_filter?
optional channel_filter?: string;
Defined in: livelink.clients/livelink.agent/sources/data/transports/PlaybackTransport.ts:96
See PlaybackTransportConfig.channel_filter.
default_channel?
optional default_channel?: string;
Defined in: livelink.clients/livelink.agent/sources/data/transports/PlaybackTransport.ts:98