File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed
src/org/puremvc/as3/multicore/core Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -114,6 +114,7 @@ package org.puremvc.as3.multicore.core
114114if ( commandClassRef == null ) return ;
115115
116116var commandInstance : ICommand = new commandClassRef();
117+ commandInstance. setMultitonKey( multitonKey );
117118commandInstance. execute ( note );
118119}
119120
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ package org.puremvc.as3.multicore.core
8989 */
9090public function registerProxy ( proxy :IProxy ) : void
9191{
92-
92+ proxy . setMultitonKey( multitonKey ) ;
9393proxyMap[ proxy. getProxyName() ] = proxy;
9494}
9595
Original file line number Diff line number Diff line change @@ -135,6 +135,9 @@ package org.puremvc.as3.multicore.core
135135 */
136136public function registerMediator ( mediator :IMediator ) : void
137137{
138+
139+ mediator. setMultitonKey( multitonKey );
140+
138141// Register the Mediator for retrieval by name
139142mediatorMap[ mediator. getMediatorName() ] = mediator;
140143
You can’t perform that action at this time.
0 commit comments