Dervin Thunk
Dervin Thunk

Reputation: 20139

How does java.util.concurrent.RecursiveTask work?

could anyone tell me the logic behind java.util.concurrent.RecursiveTask? I couldn't find the source code either on a very cursory look, so maybe someone can point me to it as well? Thanks.

Upvotes: 0

Views: 529

Answers (2)

SLaks
SLaks

Reputation: 887987

You can look at a hyperlinked source.

Upvotes: 1

Thomas
Thomas

Reputation: 88747

You could just get the java sources that are delivered with the JDK (src.zip) or decompile that.

Upvotes: 0

Related Questions