-
When we use Observable, using How can I detect that the server response of subscription is received? |
Beta Was this translation helpful? Give feedback.
Answered by
enisdenjo
Dec 22, 2023
Replies: 1 comment 11 replies
-
Since there is no confirmation message on the protocol level, you can provide an initial subscription event that is sent as soon as the client subscribes. |
Beta Was this translation helpful? Give feedback.
11 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There is no confirmation message for subscriptions, only for connections.
I just remembered, there is actually a way to acknowledge subscription - through pings. See the recipe here. You will need to change the server though...