<?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: Container-friendly domain events</title>
	<atom:link href="http://lostechies.com/jimmybogard/2010/08/04/container-friendly-domain-events/feed/" rel="self" type="application/rss+xml" />
	<link>http://lostechies.com/jimmybogard/2010/08/04/container-friendly-domain-events/</link>
	<description>Strong opinions, weakly held</description>
	<lastBuildDate>Sun, 19 May 2013 03:22:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
	<item>
		<title>By: Aluminium Kozijnen</title>
		<link>http://lostechies.com/jimmybogard/2010/08/04/container-friendly-domain-events/#comment-3426</link>
		<dc:creator>Aluminium Kozijnen</dc:creator>
		<pubDate>Wed, 25 May 2011 12:33:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2010/08/03/container-friendly-domain-events.aspx#comment-3426</guid>
		<description>I think here we can change that design whatever we want.. Very useful one.. </description>
		<content:encoded><![CDATA[<p>I think here we can change that design whatever we want.. Very useful one.. </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe</title>
		<link>http://lostechies.com/jimmybogard/2010/08/04/container-friendly-domain-events/#comment-3424</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Fri, 20 May 2011 16:59:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2010/08/03/container-friendly-domain-events.aspx#comment-3424</guid>
		<description>Thanks. I figured it out from your other post on using StructureMap registries to find generic interfaces.  In my app startup, SM finds my listener interfaces, then I add them to the static DomainEvents container of handlers, and the rest is easy.  Thanks for your great posts on the subject!  </description>
		<content:encoded><![CDATA[<p>Thanks. I figured it out from your other post on using StructureMap registries to find generic interfaces.  In my app startup, SM finds my listener interfaces, then I add them to the static DomainEvents container of handlers, and the rest is easy.  Thanks for your great posts on the subject!  </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jimmy Bogard</title>
		<link>http://lostechies.com/jimmybogard/2010/08/04/container-friendly-domain-events/#comment-3423</link>
		<dc:creator>Jimmy Bogard</dc:creator>
		<pubDate>Thu, 19 May 2011 03:02:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2010/08/03/container-friendly-domain-events.aspx#comment-3423</guid>
		<description>It&#039;s still a static call to DomainEvents.Raise, that&#039;s all. That part didn&#039;t change from the link in the post above.</description>
		<content:encoded><![CDATA[<p>It&#8217;s still a static call to DomainEvents.Raise, that&#8217;s all. That part didn&#8217;t change from the link in the post above.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe</title>
		<link>http://lostechies.com/jimmybogard/2010/08/04/container-friendly-domain-events/#comment-3401</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Mon, 16 May 2011 18:38:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2010/08/03/container-friendly-domain-events.aspx#comment-3401</guid>
		<description>I feel really stupid asking, but could you post an end-to-end example of this?  I&#039;m not seeing how your domain model still doesn&#039;t need a reference to your handler container. </description>
		<content:encoded><![CDATA[<p>I feel really stupid asking, but could you post an end-to-end example of this?  I&#8217;m not seeing how your domain model still doesn&#8217;t need a reference to your handler container. </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe</title>
		<link>http://lostechies.com/jimmybogard/2010/08/04/container-friendly-domain-events/#comment-3402</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Mon, 16 May 2011 18:38:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2010/08/03/container-friendly-domain-events.aspx#comment-3402</guid>
		<description>I feel really stupid asking, but could you post an end-to-end example of this?  I&#039;m not seeing how your domain model still doesn&#039;t need a reference to your handler container. </description>
		<content:encoded><![CDATA[<p>I feel really stupid asking, but could you post an end-to-end example of this?  I&#8217;m not seeing how your domain model still doesn&#8217;t need a reference to your handler container. </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bogardj</title>
		<link>http://lostechies.com/jimmybogard/2010/08/04/container-friendly-domain-events/#comment-2526</link>
		<dc:creator>bogardj</dc:creator>
		<pubDate>Wed, 04 Aug 2010 12:43:39 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2010/08/03/container-friendly-domain-events.aspx#comment-2526</guid>
		<description>@Udi

That&#039;s step 2 in a refactoring towards messaging, this is the midway point.  Originally this code had no concept of a message, transactional boundaries or anything.  Step 1 - convert a batch process to create a message from each line, but keep the processing synchronous. Step 2 - this message broker would instead just fire off the message.</description>
		<content:encoded><![CDATA[<p>@Udi</p>
<p>That&#8217;s step 2 in a refactoring towards messaging, this is the midway point.  Originally this code had no concept of a message, transactional boundaries or anything.  Step 1 &#8211; convert a batch process to create a message from each line, but keep the processing synchronous. Step 2 &#8211; this message broker would instead just fire off the message.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Udi Dahan</title>
		<link>http://lostechies.com/jimmybogard/2010/08/04/container-friendly-domain-events/#comment-2525</link>
		<dc:creator>Udi Dahan</dc:creator>
		<pubDate>Wed, 04 Aug 2010 10:55:36 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2010/08/03/container-friendly-domain-events.aspx#comment-2525</guid>
		<description>Why would you be processing a batch of messages together to begin with if each one is its own unit of work? You could just send each message in the batch to another endpoint and then the message boundary already gives you all the scoping you need.</description>
		<content:encoded><![CDATA[<p>Why would you be processing a batch of messages together to begin with if each one is its own unit of work? You could just send each message in the batch to another endpoint and then the message boundary already gives you all the scoping you need.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
