<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Mate &#8211; Problems Dispatching Events from a Manager Class</title>
	<atom:link href="http://blog.jeffdouglas.com/2009/02/04/mate-problems-dispatching-events-from-a-manager-class/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.jeffdouglas.com/2009/02/04/mate-problems-dispatching-events-from-a-manager-class/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=mate-problems-dispatching-events-from-a-manager-class</link>
	<description>Get your head out of your #@! and into the clouds!</description>
	<lastBuildDate>Wed, 08 Feb 2012 07:57:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: stephen</title>
		<link>http://blog.jeffdouglas.com/2009/02/04/mate-problems-dispatching-events-from-a-manager-class/comment-page-1/#comment-2260</link>
		<dc:creator>stephen</dc:creator>
		<pubDate>Mon, 20 Dec 2010 17:21:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jeffdouglas.com/?p=406#comment-2260</guid>
		<description>@Vinay
(it&#039;s been a long time, but here&#039;s a pointer for anyone with this issue)

See Mate&#039;s  InjectorRegistry.register

&quot;...registers a target instance to be used by the InjectorHandlers to inject any properties on it.&quot;

http://mate.asfusion.com/api_docs/com/asfusion/mate/ioc/InjectorRegistry.html</description>
		<content:encoded><![CDATA[<p>@Vinay<br />
(it&#8217;s been a long time, but here&#8217;s a pointer for anyone with this issue)</p>
<p>See Mate&#8217;s  InjectorRegistry.register</p>
<p>&#8220;&#8230;registers a target instance to be used by the InjectorHandlers to inject any properties on it.&#8221;</p>
<p><a href="http://mate.asfusion.com/api_docs/com/asfusion/mate/ioc/InjectorRegistry.html" rel="nofollow">http://mate.asfusion.com/api_docs/com/asfusion/mate/ioc/InjectorRegistry.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kjv007</title>
		<link>http://blog.jeffdouglas.com/2009/02/04/mate-problems-dispatching-events-from-a-manager-class/comment-page-1/#comment-918</link>
		<dc:creator>kjv007</dc:creator>
		<pubDate>Tue, 29 Jun 2010 06:35:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jeffdouglas.com/?p=406#comment-918</guid>
		<description>Thanks for sharing info.

another work around would be extend GlobalDispatcher to your manager class.</description>
		<content:encoded><![CDATA[<p>Thanks for sharing info.</p>
<p>another work around would be extend GlobalDispatcher to your manager class.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vinay</title>
		<link>http://blog.jeffdouglas.com/2009/02/04/mate-problems-dispatching-events-from-a-manager-class/comment-page-1/#comment-97</link>
		<dc:creator>Vinay</dc:creator>
		<pubDate>Wed, 27 Jan 2010 13:29:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jeffdouglas.com/?p=406#comment-97</guid>
		<description>Thats Working!
However if you want to dispatch an event from the view function (Fuction which listens to the event dispatched by Manager) does not listens by the Manager.
Means
Event Dispaching is like
1)  View-&gt;EventMap-&gt;Manager       fine
2)  Manager-&gt;EventMap-&gt;View        fine
3)View-&gt;EventMap-&gt;Manager (not working )

any workaround on this?</description>
		<content:encoded><![CDATA[<p>Thats Working!<br />
However if you want to dispatch an event from the view function (Fuction which listens to the event dispatched by Manager) does not listens by the Manager.<br />
Means<br />
Event Dispaching is like<br />
1)  View-&gt;EventMap-&gt;Manager       fine<br />
2)  Manager-&gt;EventMap-&gt;View        fine<br />
3)View-&gt;EventMap-&gt;Manager (not working )</p>
<p>any workaround on this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ivelnal</title>
		<link>http://blog.jeffdouglas.com/2009/02/04/mate-problems-dispatching-events-from-a-manager-class/comment-page-1/#comment-96</link>
		<dc:creator>ivelnal</dc:creator>
		<pubDate>Tue, 22 Dec 2009 09:23:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jeffdouglas.com/?p=406#comment-96</guid>
		<description>thanks for this good post.

I&#039;m new with mate and I&#039;m planning to use it as our main framework.</description>
		<content:encoded><![CDATA[<p>thanks for this good post.</p>
<p>I&#8217;m new with mate and I&#8217;m planning to use it as our main framework.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tcoz</title>
		<link>http://blog.jeffdouglas.com/2009/02/04/mate-problems-dispatching-events-from-a-manager-class/comment-page-1/#comment-95</link>
		<dc:creator>Tcoz</dc:creator>
		<pubDate>Tue, 26 May 2009 11:59:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jeffdouglas.com/?p=406#comment-95</guid>
		<description>Don&#039;t forget to instantiate the instance of the dispatcher (simply adding the reference didn&#039;t work for me).

In constructor of the manager:

dispatcher = new GlobalDispatcher ( );

This is a dubious thing for me: I appreciate that Mate advocates itself saying &quot;uses Flash events&quot;, but it wants you to use them in a very particular way, unlike say PureMVC, where you add listeners and dispatch events exactly as you would without the framework. I don&#039;t want to open a debate about the merits of Mate, I am liking working with it, but it does indeed alter how you would typically think about using events.</description>
		<content:encoded><![CDATA[<p>Don&#8217;t forget to instantiate the instance of the dispatcher (simply adding the reference didn&#8217;t work for me).</p>
<p>In constructor of the manager:</p>
<p>dispatcher = new GlobalDispatcher ( );</p>
<p>This is a dubious thing for me: I appreciate that Mate advocates itself saying &#8220;uses Flash events&#8221;, but it wants you to use them in a very particular way, unlike say PureMVC, where you add listeners and dispatch events exactly as you would without the framework. I don&#8217;t want to open a debate about the merits of Mate, I am liking working with it, but it does indeed alter how you would typically think about using events.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

