Design Pattern Examples
Overview of object-oriented design patterns
handlerchain_class.py File Reference

Implementation of the IMessageHandler interface and the HandlerChain class used in the HandlerChain pattern. More...

Go to the source code of this file.

Classes

class  IMessageHandler
 Represents a handler in a chain of handlers. More...
 
class  HandlerChain
 Represents a list of handlers that all implement the IMessageHandler interface. More...
 

Namespaces

namespace  DesignPatternExamples_python
 The DesignPatternExamples_python package, containing 20 examples of design patterns, each in their own namespace.
 
namespace  DesignPatternExamples_python.handlerchain
 
namespace  DesignPatternExamples_python.handlerchain.handlerchain_class
 

Detailed Description

Implementation of the IMessageHandler interface and the HandlerChain class used in the HandlerChain pattern.

Definition in file handlerchain_class.py.