in reply to Re^2: [OT] Software Architecture - Pipe and Filter
in thread [OT] Software Architecture - Pipe and Filter

> Not thinking that is going to provide timely results. What kind of programming solves those kinds of problems.

I've been told that the go-language is good in such things, but can't provide much insight.

Cheers Rolf
(addicted to the Perl Programming Language and ☆☆☆☆ :)
Je suis Charlie!

  • Comment on Re^3: [OT] Software Architecture - Pipe and Filter

Replies are listed 'Best First'.
Re^4: [OT] Software Architecture - Pipe and Filter
by trippledubs (Deacon) on Feb 10, 2016 at 17:38 UTC
    Yes! So it looks just from briefly searching 'go concurrency' that go https://www.golang-book.com/books/intro/10 has a couple APIs, goroutines and channels that match up nicely to this type of problem. Even a 'select' switch that will block until any of many channels has data ready to process. Thanks.