Skip to content

Commit e7a4a6c

Browse files
committed
update links and brand
1 parent f55ce6d commit e7a4a6c

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Refinitiv Real-time WebSocket API with Web Workers Example
22

3-
- Last update: Jan 2021
3+
- Last update: Sep 2021
44
- Environment: Any
55
- Compiler: JavaScript
66
- Prerequisite: Refinitiv Real-Time Advanced Data Hub and Refinitiv Real-Time Advanced Distribution servers version 3.2.1 and above
77

88
## Overview
99

10-
[Websocket API for Pricing Streaming and Real-Time Service](https://developers.refinitiv.com/en/api-catalog/elektron/refinitiv-websocket-api) aka Websocket API application enables easy integration into a multitude of client technology environments such as scripting and web. This API runs directly on your Refinitiv Real-Time infrastructure and presents data in an open (JSON) readable format. The API supports all Refinitiv Real-Time data models and can be integrated into multiple client technology standards e.g. Python, R, .Net, etc.
10+
[Websocket API for Pricing Streaming and Real-Time Service](https://developers.refinitiv.com/en/api-catalog/refinitiv-real-time-opnsrc/refinitiv-websocket-api) aka Websocket API application enables easy integration into a multitude of client technology environments such as scripting and web. This API runs directly on your Refinitiv Real-Time infrastructure and presents data in an open (JSON) readable format. The API supports all Refinitiv Real-Time data models and can be integrated into multiple client technology standards e.g. Python, R, .Net, etc.
1111

1212
The web browser's JavaScript runtime is a single-threaded environment by default. However, the HTML standard lets developers implement multi-threads JavaScript application in the web browser by introducing the [Web Workers](https://html.spec.whatwg.org/multipage/workers.html) feature that lets web browsers run JavaScripts in the main thread and a background thread (workers thread).
1313

@@ -63,7 +63,7 @@ The web application contains the following example files and folder:
6363

6464
For further details, please check out the following resources:
6565
* [Refinitiv Real-Time & Distribution Family page](https://developers.refinitiv.com/en/use-cases-catalog/refinitiv-real-time) on the [Refinitiv Developer Community](https://developers.refinitiv.com/) web site.
66-
* [WebSocket API page](https://developers.refinitiv.com/en/api-catalog/elektron/refinitiv-websocket-api).
66+
* [WebSocket API page](https://developers.refinitiv.com/en/api-catalog/refinitiv-real-time-opnsrc/refinitiv-websocket-api).
6767
* [Developer Webinar Recording: Introduction to Electron Websocket API](https://www.youtube.com/watch?v=CDKWMsIQfaw)
6868
* [Mozilla Developer Network: Web Workers API page](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API).
6969
* [Google HTML5 Rocks: The Basics of Web Workers page](https://www.html5rocks.com/en/tutorials/workers/basics/)

app/market_price_app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@
129129
wk.postMessage(connectObj);
130130
}
131131

132-
//Send a Login Request message to ADS WebSocket
132+
//Send a Login Request message to Real-Time Advanced Distribution Server WebSocket
133133
function sendLoginrequest(username) {
134134
//Create Login request message
135135
let loginMsg = {
@@ -165,7 +165,7 @@
165165
}
166166

167167

168-
//create Market Price request message, if user does not set service name, let the ADS use default service
168+
//create Market Price request message, if user does not set service name, let the Real-Time Advanced Distribution Server use default service
169169
let itemrequestMsg = {
170170
'ID': itemID,
171171
'Key': {

0 commit comments

Comments
 (0)