We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Let's say we have a call to channel.publish('something', true); And we want to know just after we want to know if the propagation has been stopped, is that normal that this.stopped = false; appears at the end of the publish method, instead of at the top of it? (as initialization?)
channel.publish('something', true);
this.stopped = false;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Let's say we have a call to
channel.publish('something', true);
And we want to know just after we want to know if the propagation has been stopped, is that normal that
this.stopped = false;
appears at the end of the publish method, instead of at the top of it? (as initialization?)
The text was updated successfully, but these errors were encountered: