问题
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