Changeset View
Changeset View
Standalone View
Standalone View
src/ext/reactor/core/ReactorNode.js
| Show First 20 Lines • Show All 88 Lines • ▼ Show 20 Lines | construct : function(source_streams, transformer) { | ||||
| this._nextPulse = JX.Reactor.DoNotPropagate; | this._nextPulse = JX.Reactor.DoNotPropagate; | ||||
| this._transformer = transformer; | this._transformer = transformer; | ||||
| this._sendsTo = {}; | this._sendsTo = {}; | ||||
| for (var ix = 0; ix < source_streams.length; ix++) { | for (var ix = 0; ix < source_streams.length; ix++) { | ||||
| source_streams[ix].listen(this); | source_streams[ix].listen(this); | ||||
| } | } | ||||
| } | } | ||||
| }); | }); | ||||