Skip to content
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

onMessage data queue #108

Open
oriko opened this issue Nov 6, 2016 · 0 comments
Open

onMessage data queue #108

oriko opened this issue Nov 6, 2016 · 0 comments

Comments

@oriko
Copy link

oriko commented Nov 6, 2016

Hi

I am using angular-websocket for my websocket implementation, when using the onMessage I can see a strange behavior, each time I am receiving my data back I can see that the onMessage is called also backward for my old data.

 dataStream.onMessage(function(message) {
                var data = JSON.parse(message.data);

 });

for example:
on first msg - onMessage called 1 time data = x .
on second msg - onMessage called 2 times data = x ->data = y .
on third msg - onMessage called 3 times data = x ->data = y ->data=z

Is there a way to avoid the backward calls with the old data?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant