Design Patterns
-
Having just read Liong's article about using the Observer pattern for a chat server, I don't think that this pattern is appropriate for a situation involving remoting. After all, the GoF patterns were all about object interactions within an app. Other than the Wiki (http://c2.com/cgi-bin/wiki[^]) which does my head in trying to find anything sensible on it X| , does anyone know of a catalogue of design patterns? E.g. some that apply to Remoting situations, others applying to other problem domains, etc.
-
Having just read Liong's article about using the Observer pattern for a chat server, I don't think that this pattern is appropriate for a situation involving remoting. After all, the GoF patterns were all about object interactions within an app. Other than the Wiki (http://c2.com/cgi-bin/wiki[^]) which does my head in trying to find anything sensible on it X| , does anyone know of a catalogue of design patterns? E.g. some that apply to Remoting situations, others applying to other problem domains, etc.
John, I have some links on C# application of design patterns. http://www.dofactory.com/patterns/Patterns.aspx[^]http://www.clipcode.net/components/snippets.htm[^]http://msdn.microsoft.com/msdnmag/issues/01/07/patterns/default.aspx[^] I'm not sure if these will help you out with remoting as they seem to be mostly the GOF patterns. I'd suggest checking out http://safari.oreilly.com/[^] and see if any of the Pattern books there are helpful. Chris Fill me with your knowledge, your wisdom, your coffee.
-
John, I have some links on C# application of design patterns. http://www.dofactory.com/patterns/Patterns.aspx[^]http://www.clipcode.net/components/snippets.htm[^]http://msdn.microsoft.com/msdnmag/issues/01/07/patterns/default.aspx[^] I'm not sure if these will help you out with remoting as they seem to be mostly the GOF patterns. I'd suggest checking out http://safari.oreilly.com/[^] and see if any of the Pattern books there are helpful. Chris Fill me with your knowledge, your wisdom, your coffee.
There is a book called C# Design Patterns - A Tutorial that I have found really good. It basically goes through the GoF patterns using C# examples. Jarrod