What are the advantages of using a concept like IStartable? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T05:25:53Z http://stackoverflow.com/feeds/question/908941 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/908941/what-are-the-advantages-of-using-a-concept-like-istartable 0 What are the advantages of using a concept like IStartable? Jacob Stanley 2009-05-26T04:32:39Z 2009-05-26T05:17:59Z <p>Instead of using an interface like this:</p> <pre><code>public interface IStartable { void Start(); void Stop(); } </code></pre> <p>I usually just make the constructor of an object run the Start() code, and implement IDisposable so that the dispose method runs the Stop() code.</p> <p>Is it just a matter of style? Or am I missing something important by not having something like IStartable? All I see is extra complexity, because you have to maintain it's started/stopped state.</p> <p>What are the pros and cons of using start/stop vs using ctor/dispose, especially in the context of an IoC/DI container?</p> <p><em>EDIT: Great answers, you've convinced me to use an interface for startable objects. I can't decide who's answer is the best so I'll accept whoever has the most up votes after 24 hours.</em></p> http://stackoverflow.com/questions/908941/what-are-the-advantages-of-using-a-concept-like-istartable/908954#908954 3 Answer by John Feminella for What are the advantages of using a concept like IStartable? John Feminella 2009-05-26T04:40:19Z 2009-05-26T04:40:19Z <p>The general advantage to using an interface is that they're self-describing and self-advertising. If there's no interface, you don't have a way to ask an object, "can you be started and stopped?" If you do use an interface, by contrast, you can query objects to see which of them will respond to those kinds of messages. Then you can be safely guaranteed that such objects have implemented the functionality encapsulated by the interface.</p> http://stackoverflow.com/questions/908941/what-are-the-advantages-of-using-a-concept-like-istartable/908955#908955 2 Answer by Steven A. Lowe for What are the advantages of using a concept like IStartable? Steven A. Lowe 2009-05-26T04:40:37Z 2009-05-26T04:40:37Z <p>in general, constructors should produce a properly-initialized object</p> <p>and nothing more!</p> http://stackoverflow.com/questions/908941/what-are-the-advantages-of-using-a-concept-like-istartable/908972#908972 1 Answer by Rex M for What are the advantages of using a concept like IStartable? Rex M 2009-05-26T04:47:00Z 2009-05-26T04:47:00Z <p>It could possibly depend on what, specifically, you mean to be happening when you say Start(). But in general, mixing object initialization with routine execution (especially stateful and/or long-running execution!) violates <a href="http://en.wikipedia.org/wiki/Separation%5Fof%5Fconcerns" rel="nofollow">SoC</a>.</p> <p>It also leaves a great deal of ambiguity. To a consumer, for a given object how do we know it is "starting" when we invoke the ctor? "For this given object, which implements no contract, I must leave it to hope in the author that it conforms to my expectations"? An interface makes the presence and availability of the action explicit.</p>