andrewducker: (Zim Doom)
andrewducker ([personal profile] andrewducker) wrote2014-10-12 08:08 pm

I am not enjoying writing threaded code in Java

Every time I use Java I find myself wondering whether the people in charge of its libraries are determined to make everything harder than necessary.

In JavaScript I can use promises and chain code together like so:

http.fetchSomething(myUrl)
.then(function(result){return saveTheResultAsynchronously(result);})
.then(function(furtherResult){displayTheResult(furtherResult);});

And provided the various methods return promises each "then" will be called once the previous bit of functionality has finished running, allowing them to be chained together really easily.

C# uses async/await for make things easy too.

Java, on the other hand, has "Future" as a type, which is the equivalent of a JS Promise - but one that doesn't allow for callbacks. Your options are to either poll "is it done yet?" repeatedly or to block the thread. There's no equivalent of "Then", which makes it really hard to run code when something finishes, let alone chain asynchronous methods together one after another.

You'd think that "Do X, and then when X is done, do Y" would be a basic requirement for any kind of asynchronous processing, but apparently the Java library creators disagree...
matgb: Artwork of 19th century upper class anarchist, text: MatGB (Default)

[personal profile] matgb 2014-10-13 07:45 am (UTC)(link)
You'd think that "Do X, and then when X is done, do Y" would be a basic requirement for

You could do that sort of thing in BASIC on the Speccy, I'm astounded that something as well thought of as Java doesn't allow for it. I mean, 90% of modern coding might as well be Greek to me, but I know enough of the basics to be surprised when certain things are implemented weirdly in some languages.
matgb: Artwork of 19th century upper class anarchist, text: MatGB (Default)

[personal profile] matgb 2014-10-13 08:01 am (UTC)(link)
Ah, see, this is why I don't do coding. Um, asynchronous operation, um, two things being done at the same time and when one finishes the other can then change what it's doing to something else?

OK, yeah, BASIC didn't allow for that, misunderstood, but, y'know, not my field and then some ;-)