In the context of Backbone.js
and Marionette.js
, what is the difference between the Central EventBus
and the Backbone.Radio
system? Does the Backbone.Radio
system wrap the Central EventBus
?
Asked
Active
Viewed 137 times
-3

lsimmons
- 677
- 1
- 8
- 22
-
2What do you mean by `Central EventBus`? Could you provide a [mcve]? – Emile Bergeron Feb 16 '17 at 02:24
1 Answers
0
If you're talking about App.vent
in Marionette v2.. then Radio can be shimmed in so that App.vent
uses Radio in it's implementation.
However the events object on the App was removed in v3. Rather than having a single events object on the application and scoping events by a naming convention, we recommend using radio channels. You can still attach a radio channel to the Marionette.Application if you want to treat it like App.vent
but it is no longer implemented this way for you. In general, if needed, I would recommend using Radio directly.

Paul Falgout
- 121
- 4