Members
- 
			<private> _subscriptions :Array
- 
	DescriptionThe list of subscriptions maintained by the mixin Details
Methods
- 
			subscribe( channel, topic [, callback ] ) → {object}
- 
	DescriptionSubscribe to an event ParametersName Type Attributes Description channelstring The channel to subscribe to topicstring The topic to subscribe to callbackcallback <optional> What to do when you get the event ReturnsDetails
- 
			once( channel [, topic [, callback ] ] ) → {object}
- 
	DescriptionSubscribe to an event once ParametersName Type Attributes Description channelstring The channel to subscribe to topicstring <optional> The topic to subscribe to callbackcallback <optional> What to do when you get the event ReturnsDetails
- 
			publish( [ channel [, topic [, options ] ] ] )
- 
	DescriptionPublish an event on the system bus ParametersName Type Attributes Default Description channelstring <optional> '2' The channel to publish to topicstring <optional> 1 The topic to publish to optionsobject <optional> {} What to pass to the event Name Type Attributes Default Description haboolean <optional> 2 Test sub prop Details
- 
			getSubscription( channel, topic ) → {object}
- 
	DescriptionGet a subscription definition ParametersName Type Description channelstring topicstring ReturnsDetails
- 
			<private> destroy()
- 
	DescriptionGets rid of all subscriptions for this object. Details