Pipeline pattern implementation in java

12,361

Solution 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.

Solution 2

Regarding

how to implement pipeline pattern in java?

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

Share:
12,361

Related videos on Youtube

JimProgrammer
Author by

JimProgrammer

A polyglot who can spell Scala, Java and some Rongorongo. He enjoys figuring out complex data analysis problems and breaking them down, making them simple and accessible. He does this in his his blog at Bytescrolls and by contributing to open source projects in his spare time. You can find him as @zudokod on Twitter.

Updated on May 29, 2022

Comments

  • JimProgrammer
    JimProgrammer almost 2 years

    read about Pipeline pattern from here

    how to implement pipeline pattern in java?

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

    • Michael Borgwardt
      Michael Borgwardt about 13 years
      The paper you link to already lists variants and applications in great detail...
    • abcd
      abcd about 13 years
      Well, none of that is obvious from your question. If you expect serious, good answers, then please take the effort to post a serious, unambiguous question.
  • JimProgrammer
    JimProgrammer about 13 years
    does chain of responsibility useful for parallel processing?