puniverse / quasar

Fibers, Channels and Actors for the JVM

Home Page:http://docs.paralleluniverse.co/quasar/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Provide functional style API?

kevinten10 opened this issue · comments

Now, when I try to start a Fiber, I have to use generated code similar to traditional Thread

Fiber<Void> echo = new Fiber<Void>("ECHO", () -> { // lambda }).start();

Can you consider a functional programming style that provides a pattern for chained operators.

like: go(() -> { /* lambda */ });

This will make it easier for me in the chain call.

I know you are busy with the loom project recently, do you consider adding this feature to the loom project?