Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

代码结构

- src
  - AbstractHandler.py # 责任链抽象类或接口,定义调用链,供具体类继承和实现
  - AuthHandler.py # 具体事件处理类之一,继承抽象类
  - RequestHandler.py # 具体事件处理类之一,继承抽象类
  - UserHandler.py # 具体事件处理类之一,继承抽象类

测试验证

$ cd ./chain-responsibility/python
$ python test/test.py