-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP: feat: subscribe new channel, add overflow_url to schedule state #10
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: Tomás Castillo <[email protected]>
Signed-off-by: Tomás Castillo <[email protected]>
src/ably.js
Outdated
@@ -74,6 +74,16 @@ class AblyUpdates { | |||
}) | |||
}) | |||
|
|||
channel.subscribe('OVERFLOW', (message) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is not the correct one please do check the SDS for reference
src/ably.js
Outdated
@@ -74,6 +74,16 @@ class AblyUpdates { | |||
}) | |||
}) | |||
|
|||
channel.subscribe('OVERFLOW', (message) => { | |||
const { data: payload } = message; | |||
const { event_id, overflow_url } = payload; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is not correct is the same payload as data update
plus a new params dictionary where it lives the new attribute
overflow_url
Signed-off-by: Tomás Castillo <[email protected]>
Signed-off-by: Tomás Castillo <[email protected]>
ref: https://tipit.avaza.com/project/view/360253#!tab=task-pane&task=3637562
Signed-off-by: Tomás Castillo [email protected]