publish method
Publish a message on a given topic.
Implementation
void publish(String topic, [dynamic data]) {
if ( Tracer.enabled)
Tracer.trace("editor.bus", TraceLevel.high, " public '$topic', data=$data (${data.runtimeType}");
_streamController.add(_Message(topic, data));
}