Pipeline pattern implementation in java

爱⌒轻易说出口 提交于 2020-01-01 18:54:09

问题


read about Pipeline pattern from here

how to implement pipeline pattern in java?

is there any open source java project that uses pipeline pattern?


回答1:


Not sure if you are looking for a specific task processing component or just pipelining software in general. However, JBoss Netty implements a pipeline pattern for attaching and detaching IO processors. It's really intended for NIO based networking stacks (although it does have a local component). Perhaps this will be helpful.




回答2:


Regarding

how to implement pipeline pattern in java?

I think you could use Apache commons-chain, that is geared to this right?



来源:https://stackoverflow.com/questions/5686332/pipeline-pattern-implementation-in-java

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!