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

Add onError event channel #4

Closed
vitalets opened this issue Oct 30, 2017 · 0 comments
Closed

Add onError event channel #4

vitalets opened this issue Oct 30, 2017 · 0 comments

Comments

@vitalets
Copy link
Owner

Currently adding error listener is possible only from original ws instance:

wsp.ws.addEventListener('error', listener);

There are two disadvantages:

  1. Adding listener is only possible after connect (like in original WebSocket)
  2. It is inconsistent with other event channels: onClose and onMessage

The solution is to add onError channel with following usage:

wsp.onError.addListener(e => console.error(e));
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