"One thing I'll add is that using a "Strategy factory method" will not easily fit the purposes here either because using multiple Strategies is actually involved in processing a document."
That's pertinent information :-) Again, the factory can still be used to simply *identify and create* the appropriate Strategy; however, you will need more to coordinate the processing of multiple Strategies. You wouldn't want the Strategy itself to hold this information, because you introduce an unnecessary degree of coupling between Strategies. After hearing your latest requirement I now agree with Saad; chain of responsibility will provide the extensible coordination between Strategies without introducing a coupling between them. Strategy will of course still be used, and you can still choose to use a factory to actually identify and create the appropriate Strategies that participate in the chain if you so desire; your choice. Google around for Chain of Responsibility and you'll find yourself inundated with sample implementations. Kind regards, Chad On Tue, 29 Mar 2005 07:46:47 -0500, Bill Bassler <[EMAIL PROTECTED]> wrote: > From my perspective, I think you're right on the mark. One thing I'll add > is that using a "Strategy factory method" will not easily fit the purposes > here either because using multiple Strategies is actually involved in > processing a document. I suppose a single Strategy could encapsulate > multiple sub-processes though. For example, I have two discrete processes > involved to complete document processing: 1. Process/transform the received > message. 2. Submit the transformed message to specific processor out of > many potential processors. > > From what I understand about chain of responsiblity, it does kind of fit > but seems maybe a bit more than I might need. It does, however, look like > it's suited to defining multiple processing paths in a very flexible way. > Is there a good reference to get a handle on an interception filter > implementation? > > =================================== > This list is hosted by DevelopMentor(r) http://www.develop.com > > View archives and manage your subscription(s) at http://discuss.develop.com > =================================== This list is hosted by DevelopMentor� http://www.develop.com View archives and manage your subscription(s) at http://discuss.develop.com
