<?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: GWT 2.0 first stab at RunAsync</title>
	<atom:link href="http://www.itsolut.com/chrismusings/2009/08/31/gwt-2-0-first-stab-at-runasync/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.itsolut.com/chrismusings/2009/08/31/gwt-2-0-first-stab-at-runasync/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=gwt-2-0-first-stab-at-runasync</link>
	<description>Random Snippets &#38; Thoughts</description>
	<lastBuildDate>Fri, 17 Dec 2010 12:24:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.3</generator>
	<item>
		<title>By: Chris Hane</title>
		<link>http://www.itsolut.com/chrismusings/2009/08/31/gwt-2-0-first-stab-at-runasync/comment-page-1/#comment-41</link>
		<dc:creator>Chris Hane</dc:creator>
		<pubDate>Tue, 13 Oct 2009 14:39:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.itsolut.com/chrismusings/?p=160#comment-41</guid>
		<description>&lt;a href=&quot;#comment-40&quot; rel=&quot;nofollow&quot;&gt;@Evely &lt;/a&gt; 
I don&#039;t think so; but this is not something we have tried.  You should ask on the gwt &amp; gin lists tough for confirmation....</description>
		<content:encoded><![CDATA[<p><a href="#comment-40" rel="nofollow">@Evely </a><br />
I don&#8217;t think so; but this is not something we have tried.  You should ask on the gwt &#038; gin lists tough for confirmation&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Evely</title>
		<link>http://www.itsolut.com/chrismusings/2009/08/31/gwt-2-0-first-stab-at-runasync/comment-page-1/#comment-40</link>
		<dc:creator>Evely</dc:creator>
		<pubDate>Tue, 13 Oct 2009 08:16:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.itsolut.com/chrismusings/?p=160#comment-40</guid>
		<description>So, there is no way to split the code and not load the injected Provider?</description>
		<content:encoded><![CDATA[<p>So, there is no way to split the code and not load the injected Provider?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Hane</title>
		<link>http://www.itsolut.com/chrismusings/2009/08/31/gwt-2-0-first-stab-at-runasync/comment-page-1/#comment-39</link>
		<dc:creator>Chris Hane</dc:creator>
		<pubDate>Mon, 12 Oct 2009 17:48:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.itsolut.com/chrismusings/?p=160#comment-39</guid>
		<description>I always put the split code in a method call.  My guess as to why Provider gets pulled in is that is it needed before the split point is actually reached.  Provider is needed to call the constructor.</description>
		<content:encoded><![CDATA[<p>I always put the split code in a method call.  My guess as to why Provider gets pulled in is that is it needed before the split point is actually reached.  Provider is needed to call the constructor.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Evely</title>
		<link>http://www.itsolut.com/chrismusings/2009/08/31/gwt-2-0-first-stab-at-runasync/comment-page-1/#comment-38</link>
		<dc:creator>Evely</dc:creator>
		<pubDate>Mon, 12 Oct 2009 15:06:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.itsolut.com/chrismusings/?p=160#comment-38</guid>
		<description>Hi, I have a question regarding Code Splitting + DI with Guice/Gin. I have a module that looks like this:

public class Module {

    private Thing thing; private Provider provider; // Guice 

    @Inject public Module(Thing thing, Provider provider) {

        this.thing = thing; this.provider = provider; 

    } 

}

I am trying to split the code for this class, so I inserted a call to GWT.runAsync directly in the constructor. But the code for Provider gets pulled in. Any idea how can I combine DI with Guice/Gin and still be able to split the code like I want?

Thanks in advance.

Evely</description>
		<content:encoded><![CDATA[<p>Hi, I have a question regarding Code Splitting + DI with Guice/Gin. I have a module that looks like this:</p>
<p>public class Module {</p>
<p>    private Thing thing; private Provider provider; // Guice </p>
<p>    @Inject public Module(Thing thing, Provider provider) {</p>
<p>        this.thing = thing; this.provider = provider; </p>
<p>    } </p>
<p>}</p>
<p>I am trying to split the code for this class, so I inserted a call to GWT.runAsync directly in the constructor. But the code for Provider gets pulled in. Any idea how can I combine DI with Guice/Gin and still be able to split the code like I want?</p>
<p>Thanks in advance.</p>
<p>Evely</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Hane</title>
		<link>http://www.itsolut.com/chrismusings/2009/08/31/gwt-2-0-first-stab-at-runasync/comment-page-1/#comment-26</link>
		<dc:creator>Chris Hane</dc:creator>
		<pubDate>Tue, 15 Sep 2009 19:33:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.itsolut.com/chrismusings/?p=160#comment-26</guid>
		<description>&lt;a href=&quot;#comment-25&quot; rel=&quot;nofollow&quot;&gt;@Ben &lt;/a&gt; 

I did get hosted mode to work.  I have not tried the new OOPHM hosted mode yet.</description>
		<content:encoded><![CDATA[<p><a href="#comment-25" rel="nofollow">@Ben </a> </p>
<p>I did get hosted mode to work.  I have not tried the new OOPHM hosted mode yet.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

