Hi,
When is it a good idea to use factory methods within an object instead of a Factory class?
Regards,
-jj.
|
|
Hi, When is it a good idea to use factory methods within an object instead of a Factory class? Regards, -jj. |
|||
|
|
|
|
Factory methods should be considered as an alternative to constructors - mostly when constructors aren't expressive enough, ie.
is not as expressive as:
Factory classes are useful when you need a complicated process for constructing the object, when the construction need a dependency that you do not want for the actual class, when you need to construct different objects etc. |
||
|
|
|
|
There also useful when you need several "constructors" with the same parameter type but with different behavior. |
||
|
|
|
|
Factory classes are more heavyweight, but give you certain advantages. In cases when you need to build your objects from multiple, raw data sources they allow you to encapsulate only the building logic (and maybe the aggregation of the data) in one place. There it can be tested in abstract without being concerned with the object interface. I have found this a useful pattern, particularly where I am unable to replace and inadequate ORM and want to efficiently instantiate many objects from DB table joins or stored procedures. |
||
|
|
|
|
Factory classes are useful for when the object type that they return has a private constructor, when different factory classes set different properties on the returning object, or when a specific factory type is coupled with its returning concrete type. WCF uses ServiceHostFactory classes to retrieve ServiceHost objects in different situations. The standard ServiceHostFactory is used by IIS to retrieve ServiceHost instances for .svc files, but a WebScriptServiceHostFactory is used for services that return serializations to JavaScript clients. ADO.NET Data Services has its own special DataServiceHostFactory and ASP.NET has its ApplicationServicesHostFactory since its services have private constructors. If you only have one class that's consuming the factory, then you can just use a factory method within that class. |
|||
|
|
|
|
It's really a matter of taste. Factory classes can be abstracted/interfaced away as necessary, whereas factory methods are lighter weight (and also tend to be testable, since they don't have a defined type, but they will require a well-known registration point, akin to a service locator but for locating factory methods). |
||
|
|