<?xml version="1.0" encoding="UTF-8"?>











<rss version="2.0" xmlns:jf="http://www.jivesoftware.com/xmlns/jiveforums/rss">



<channel>
    <title>Support Forums: Message List - Intelligent Lazy [IL] Pattern</title>
    <link>http://www.theserverside.com</link>
    <description>Most recent forum messages</description>
    <language>en</language>
    
        <generator>Jive Forums Silver 5.5.30 (www.jivesoftware.com)</generator>
    
    <pubDate>Thu, 20 Jun 2013 00:00:34 -0400</pubDate>


    <item>

        <title>Re: Intelligent Lazy [IL] Pattern</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=50499</link>

        

        
            <description><![CDATA[How these patterns are better than using a restricted constructor?. We can solve this problem by not providing the default constructor, and have only one single constructor with mandate fields as arguments. This is the simple solution.]]></description>
        

        <pubDate>Sat, 28 Feb 2009 22:34:39 -0500</pubDate>

        

        <jf:creationDate>Sat, 28 Feb 2009 22:34:39 -0500</jf:creationDate>
        <jf:modificationDate>Sat, 28 Feb 2009 22:34:39 -0500</jf:modificationDate>
        <jf:date>Feb 28, 2009</jf:date>
        <jf:author>Bhaskar Reddy</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>Re: Intelligent Lazy [IL] Pattern</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=50499</link>

        

        
            <description><![CDATA[To "Rohit Verma" ...]]></description>
        

        <pubDate>Tue, 03 Feb 2009 08:08:34 -0500</pubDate>

        

        <jf:creationDate>Tue, 03 Feb 2009 08:08:34 -0500</jf:creationDate>
        <jf:modificationDate>Tue, 03 Feb 2009 08:08:34 -0500</jf:modificationDate>
        <jf:date>Feb 3, 2009</jf:date>
        <jf:author>Sergey Gus</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>Re: Intelligent Lazy [IL] Pattern</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=50499</link>

        

        
            <description><![CDATA[This is nothing but buider pattern.
As some one else is also pointed out , you "pattern" does not really waits, it just raise an exception and expects client to take care of that.]]></description>
        

        <pubDate>Mon, 02 Feb 2009 06:41:12 -0500</pubDate>

        

        <jf:creationDate>Mon, 02 Feb 2009 06:41:12 -0500</jf:creationDate>
        <jf:modificationDate>Mon, 02 Feb 2009 06:41:12 -0500</jf:modificationDate>
        <jf:date>Feb 2, 2009</jf:date>
        <jf:author>Rohit Verma</jf:author>
        <jf:replyCount>1</jf:replyCount>
    </item>


    <item>

        <title>Wait</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=50499</link>

        

        
            <description><![CDATA[Your explanation is incorrect: you class does not actually "waits" until it gets all the required data. It simply refuses to create it if there is some missing parts, which is not at all the same thing....]]></description>
        

        <pubDate>Fri, 23 Jan 2009 01:20:26 -0500</pubDate>

        

        <jf:creationDate>Fri, 23 Jan 2009 01:20:26 -0500</jf:creationDate>
        <jf:modificationDate>Fri, 23 Jan 2009 01:20:26 -0500</jf:modificationDate>
        <jf:date>Jan 23, 2009</jf:date>
        <jf:author>Guillaume Bourassa</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>Wrong responsibility</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=50499</link>

        

        
            <description><![CDATA[The code of your CarProducer should be in the constructor of the Car class. You do not need the CarProducer. If you really want a factory you can use a standard factory additionally.]]></description>
        

        <pubDate>Sat, 18 Oct 2008 02:33:04 -0400</pubDate>

        

        <jf:creationDate>Sat, 18 Oct 2008 02:33:04 -0400</jf:creationDate>
        <jf:modificationDate>Sat, 18 Oct 2008 02:33:04 -0400</jf:modificationDate>
        <jf:date>Oct 18, 2008</jf:date>
        <jf:author>Patrick Holthuizen</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>Re: What is the difference between IL and Factory pattern</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=50499</link>

        

        
            <description><![CDATA[I can't think of any practical usage of IL.]]></description>
        

        <pubDate>Thu, 09 Oct 2008 18:00:23 -0400</pubDate>

        

        <jf:creationDate>Thu, 09 Oct 2008 18:00:23 -0400</jf:creationDate>
        <jf:modificationDate>Thu, 09 Oct 2008 18:00:23 -0400</jf:modificationDate>
        <jf:date>Oct 9, 2008</jf:date>
        <jf:author>Kamil Tabak</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>Re: What is the difference between IL and Factory pattern</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=50499</link>

        

        
            <description><![CDATA[Factory Pattern creates objects whenever a request comes for the creation.It will not check the all the required attrbutes available or not.In the case of IL pattern , it waits untils all the required properties set to create that particular object. Then...]]></description>
        

        <pubDate>Thu, 25 Sep 2008 09:08:22 -0400</pubDate>

        

        <jf:creationDate>Thu, 25 Sep 2008 09:08:22 -0400</jf:creationDate>
        <jf:modificationDate>Thu, 25 Sep 2008 09:08:22 -0400</jf:modificationDate>
        <jf:date>Sep 25, 2008</jf:date>
        <jf:author>Prtaheesh TU</jf:author>
        <jf:replyCount>1</jf:replyCount>
    </item>


    <item>

        <title>pattern?</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=50499</link>

        

        
            <description><![CDATA[Is it the new pattern you think up?
I don't think it's a pattern!]]></description>
        

        <pubDate>Wed, 10 Sep 2008 05:42:02 -0400</pubDate>

        

        <jf:creationDate>Wed, 10 Sep 2008 05:42:02 -0400</jf:creationDate>
        <jf:modificationDate>Wed, 10 Sep 2008 05:42:02 -0400</jf:modificationDate>
        <jf:date>Sep 10, 2008</jf:date>
        <jf:author>D Liang</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>What is the difference between IL and Factory pattern</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=50499</link>

        

        
            <description><![CDATA[what is the difference between IL and Factory pattern?]]></description>
        

        <pubDate>Mon, 08 Sep 2008 05:20:31 -0400</pubDate>

        

        <jf:creationDate>Mon, 08 Sep 2008 05:20:31 -0400</jf:creationDate>
        <jf:modificationDate>Mon, 08 Sep 2008 05:20:31 -0400</jf:modificationDate>
        <jf:date>Sep 8, 2008</jf:date>
        <jf:author>Gary Zhu</jf:author>
        <jf:replyCount>2</jf:replyCount>
    </item>


    <item>

        <title>Intelligent Lazy [IL] Pattern</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=50499</link>

        

        
            <description><![CDATA[IL Pattern asks the creator to wait until it gets all or required information about the creating object....]]></description>
        

        <pubDate>Fri, 29 Aug 2008 08:16:43 -0400</pubDate>

        

        <jf:creationDate>Fri, 29 Aug 2008 08:16:43 -0400</jf:creationDate>
        <jf:modificationDate>Fri, 29 Aug 2008 08:16:43 -0400</jf:modificationDate>
        <jf:date>Aug 29, 2008</jf:date>
        <jf:author>Prtaheesh TU</jf:author>
        <jf:replyCount>9</jf:replyCount>
    </item>



</channel>
</rss>

