zudokod
zudokod

Reputation: 4094

Pipeline pattern implementation in java

read about Pipeline pattern from here

how to implement pipeline pattern in java?

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

Upvotes: 2

Views: 12676

Answers (2)

Persimmonium
Persimmonium

Reputation: 15789

Regarding

how to implement pipeline pattern in java?

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

Upvotes: 4

Nicholas
Nicholas

Reputation: 16066

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.

Upvotes: 2

Related Questions