-
Notifications
You must be signed in to change notification settings - Fork 595
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
Implement Service & Service Object for PubSub #944
Implement Service & Service Object for PubSub #944
Conversation
4982013
to
6395c27
Compare
Instead of using a multiple inheritance lib, what are your feelings on just having |
That sounds a little crazy. Why would we do that? |
Well if you just create a prototype chain, then you can have something inherit for multiple "classes". And it seems to me that the only reason we're even including a multiple inheritance lib is because on certain objects we want to use |
That is why we're using it. But that's the only place we need it, so I On Saturday, November 14, 2015, Dave Gramlich [email protected]
|
Well, that's not true - #939 is also using it to extend both an event emitter and service object. |
The point is not all. I don't think we want all of our classes to be event On Saturday, November 14, 2015, Dave Gramlich [email protected]
|
Fair enough! |
Implement Service & Service Object for PubSub
For #904
This hooks Pub/Sub up with Service & ServiceObject.