For a deeper look into our Elektron API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
3 4 9 12

StreamState::CLOSED_RECOVER and OPEN

In case of StreamState::CLOSED_RECOVER, when the item IS recoved, will consumer get StreamState:OPEN?

elektronrefinitiv-realtimeelektron-sdkstream-state
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

· Write an Answer
Upvote
Accepted
4.4k 10 6 9

Here is the Item State Decision Table from ETA developer guide.

Both StreamState::CLOSED and StreamState::CLOSED_RECOVER mean client is not subscribed to this item any more. The different is whether the item can be recover.

For example: You will get CLOSED when you request an item that does not exit or an item that you do not have permission to view. While CLOSED_RECOVER is sent when upstream service is down but can be recover at later time.

However, The SingleOpen Elements that are passed via the login request can effect the CLOSED_RECOVER. If SingleOpen is true (EMA default), the provider will drive the recovery of item streams. Instead of sending CLOSED_RECOVER,the provider will send OPEN - DATA_SUSPECT. The client is still subscribed to the item and ticks will start to come after provider recover the service.

StreamState::NON_STREAMING is received when you request a snapshot. When the refresh is received, the stream is considered closed.

StreamState::CLOSED_REDIRECTED means The current stream is closed and has new identifying information. This happen when there is a RIC name change. The user can issue a new request for the data using the new message key data from the redirect message.

Data state should be used in conjunction with the stream state. Please see the above table.


table.png (44.5 KiB)
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.