Refinitiv Data Platform Library for TypeScript

open

Allows you to open a streaming chain connection.

Syntax

streamingChain.open()

Parameters

None.

Returned value

Promise<Pricing.Chain.Stream> a Promise with the current streaming chain instance`

Usage

The following example demonstrates how to create and open a pricing chain stream.

const streamingChain = await Pricing.Chain.Definition('.AV.HSI').getStream(session);

await streamingChain.open();

None.