Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hiwepy/disruptor-biz
基于责任链的disruptor处理实现
https://github.com/hiwepy/disruptor-biz
disruptor
Last synced: 6 days ago
JSON representation
基于责任链的disruptor处理实现
- Host: GitHub
- URL: https://github.com/hiwepy/disruptor-biz
- Owner: hiwepy
- License: apache-2.0
- Created: 2017-09-12T01:27:24.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-01-01T17:12:08.000Z (almost 5 years ago)
- Last Synced: 2023-07-26T21:57:52.142Z (over 1 year ago)
- Topics: disruptor
- Language: Java
- Size: 154 KB
- Stars: 1
- Watchers: 2
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#disruptor-biz
## 说明
###基于 Disruptor 异步并发框架 实现的 异步事件推送、处理封装。
- 1、事件推送
a、配置简单,少量配置即可实现异步事件推送
- 2、事件处理
a、配置简单,少量配置即可实现异步事件处理
b、组件实现了基于责任链的事件处理实现;可实现对具备不同 事件规则 ruleExpression 的事件对象进行专责处理;就如 Filter,该组件实现的Handler采用了同样的原理;
- /Event-DC-Output/TagA-Output/** = inDbPostHandler 该配置表示;Event = Event-DC-Output , Tags = TagA-Output , Keys = 任何类型 的事件对象交由 inDbPostHandler 来处理
- /Event-DC-Output/TagB-Output/** = smsPostHandler 该配置表示;Event = Event-DC-Output , Tags = TagB-Output , Keys = 任何类型 的事件对象交由 smsPostHandler 来处理通过这种责任链的机制,很好的实现了事件的分类异步处理;比如消息队列的消费端需要快速的消费各类消息,且每种处理实现都不相同;这时候就需要用到事件对象的分类异步处理。
### Maven``` xml
com.github.hiwepy
disruptor-biz
${project.version}```