frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Open in hackernews

Understanding Java's Asynchronous Journey

https://amritpandey.io/understanding-javas-asynchronous-journey/
17•hardasspunk•1y ago

Comments

Neywiny•1y ago
I don't get it. The first example in JS vs Java looks very similar. Now all those other code blocks, they certainly have more going on but idk how that compares to JS. And to answer the questions:

A completable future is something that in the future may complete. I think that's self explanatory. A promise seems equally vague.

Boilerplate looks the same. JS is just a function, Java they put a class around it. Java requires exception handling which is annoying but having fought errors in async JS, I'll take all I can get.

API is eh. Sure. But that's not even shown in this example so I have no idea.

So JS saves like 3 lines? Is that really so much better?

cogman10•1y ago
> A completable future is something that in the future may complete. I think that's self explanatory.

But not the reason for the name :).

It's called "completable" because these futures have a method on them `future.complete("value")`. Before their introduction, there was a `Future` API that java had.

nogridbag•1y ago
Yeah that first example is rather poor. And it uses the word boilerpate to seemingly refer to the stuff unrelated to the async code (class declaration, exception handling, main method).

I don't use Java async much, but I guess if you have a utility method named "setTimeout" than the example can simply be:

    public CompletableFuture<String> fetchData() {
        return setTimeout(() -> "Data Fetched", 10000);
    }

    public void loadData() {
        fetchData().thenAccept(System.out::println);
    }
Which is simpler or equivalent to the JS example.
stevoski•1y ago
The Java 1 example uses lambdas, which were introduced in Java 8.

It’s probably intentional, because it allows showing the Java 1 Thread approach succinctly.

But as long-term Java person, I find it jarring.

philipwhiuk•1y ago
Java's had `var` since Java 10 but apparently the author deliberately ignored that to make the example as wordy as possible.

It's a little tiring to read a Java example with an entry-point (the public-static-void bit) and then a JavaScript example without one.

If you strip that out the original Java is:

  var future = CompletableFuture.supplyAsync(() -> {
        try {
                Thread.sleep(10000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            return "Data Fetched";
        });
  future.thenAccept(result -> System.out.println(result));
  System.out.println("Prints first"); // prints before the async result
which is only obtuse due to checked exceptions.

Arguably it's still a different thing you're doing, because it's not scheduling a task on a pool, it's creating a thread which sleeps for 10 seconds.

elric•1y ago
`var` is very unhelpful in situations where the reader might not be entirely familiar with the context, especially when using factory methods.

I don't think the author was trying to make the example "wordy" so much as "clear".

cogman10•1y ago
Also, arguably, the wrong way to do something like this.

The author uses `setTimeout` for javascript. The equivalent for Java is either the `Timer` class or a `ScheduledExecutorService`. Doing a `Thread.sleep` simply isn't how you should approach this.

With that in mind, if you want to use both these things and keep the completable future interface you'd have to do soemthing like this.

    ScheduledExecutorService scheduler = Executors.newScheduledThreadPool(1);
    var future = new CompletableFuture<String>();
    scheduler.schedule(()->future.complete("Data Fetched"), 10, TimeUnit.SECONDS);
    future.thenAccept(result -> System.out.println(result));
    System.out.println("Prints first"); // prints before the async result
    scheduler.shutdown();
AtlasBarfed•1y ago
Does no.js still limit you to a single core/CPU use?

Or as a node successfully been able to start utilizing more cores underneath its JavaScript single thread model. It presents the programmer?

I just remember early node.js from like 15 years ago and the single background task limitation of JavaScript running in a web page.

Cuz you got async code is nice, but what you really wanted to be able to harness in modern CPUs is multi-core

That said, I've been looking for an article like this for a while, although I think there are other associated libraries that also had steps in here. I do think the jvm adopted a lot of those, but I'm not sure if they actually are better than the original extension libraries.

msgilligan•1y ago
I simplified the first example to:

  void main() {
      CompletableFuture<String> future = CompletableFuture.supplyAsync(this::asyncMethod);
      future.thenAccept(result -> IO.println(result));
      IO.println("Prints first");             // prints before the async result
      future.join();                          // Wait for future to complete
  }

  String asyncMethod() {
      try {
          Thread.sleep(10000);
      } catch (InterruptedException e) {
          return "Interrupted";
      }
      return "Data Fetched";
  }
I made the following changes:

1. Move the asynchronous function called in the CompletableFuture to its own method

2. Use Java 25 "instance main method" (see JEP 25: https://openjdk.org/jeps/512)

3. Use Java 25 IO.println() to simplify console output

4. Instead of throwing a fatal exception on interruption, return "Interrupted" immediately.

5. Use future.join() so the main method waits for the future to complete and the "Data fetched" output is printed.

This program can be run directly from source with `java Example.java`. (If you're using Java 24 or a version of Java 25 prior to EA 22, you need to use `java --enable-preview Example.java`)

Here is a modified version of the example that interrupts the thread:

  void main() {
      ExecutorService executor = Executors.newSingleThreadExecutor();
      CompletableFuture<String> future = CompletableFuture.supplyAsync(this::asyncMethod, executor);
      future.thenAccept(result -> IO.println(result));
      IO.println("Prints first");             // prints before the async result
      executor.shutdownNow();
      future.join();                          // Wait for future to complete
  }

  String asyncMethod() {
      try {
          Thread.sleep(10000);
      } catch (InterruptedException e) {
          return "Interrrupted";
      }
      return "Data Fetched";
  }
wpollock•1y ago
In Java 24, new features support educational and demonstration use. You don't need a class to wrap your main method, which also has a simpler signature. To compare JavaScript with Java examples, one should make use of these features.

While the examples may need some work, I enjoyed this post, it nicely shows the evolution of Java concurrency.

Show HN: Building a Stateful AI Agent

https://github.com/surya17495/centri
1•suryaankata•3m ago•0 comments

DIY crane bot that tidies up a room

https://hackaday.com/2026/06/15/building-a-ceiling-based-crane-robot-to-keep-a-room-clean/
1•soupspaces•5m ago•0 comments

Seventeen Camels and Where They Can Take You

https://mathenchant.wordpress.com/2026/06/15/seventeen-camels-and-where-they-can-take-you/
1•akkartik•9m ago•0 comments

Flax debugging: making a hash of things

https://www.gilesthomas.com/2026/06/hashing-jax-parameters
1•gpjt•10m ago•0 comments

Multiple mastra NPM packages compromised

https://github.com/mastra-ai/mastra/issues/18045
1•varunsharma07•10m ago•1 comments

Should nicotine be regulated like a narcotic?

https://www.nature.com/articles/d41586-026-01903-z
1•ilreb•11m ago•0 comments

Show HN: penguinAI – the c.ai alternative focused on privacy, no self-hosting

https://penguinai.pages.dev/
1•telui•11m ago•0 comments

Creating a Dynamic Favicon with Cloudinary

https://www.raymondcamden.com/2026/06/16/creating-a-dynamic-favicon-with-cloudinary
3•mooreds•16m ago•0 comments

A rat sighting in New Zealand can trigger an urgent response

https://www.theguardian.com/world/2026/jun/17/rat-hunters-catchers-predator-free-new-zealand-well...
2•rguiscard•18m ago•0 comments

The Physics of a Fable

https://twitter.com/Rafa_Schwinger/status/2066230802439180447
2•gmays•19m ago•0 comments

The Ease of Expertise

https://fields.medium.com/the-ease-of-expertise-8ad7b8670479
1•mooreds•20m ago•0 comments

The Next Layer of Blockchain Infrastructure Is Execution Memory

https://blog.bridgexapi.io/execution-intelligence-needs-reconstruction
2•Bridgexapi•20m ago•0 comments

Anthropic lost the White House's trust – and then its flagship product

https://www.washingtonpost.com/technology/2026/06/15/how-anthropic-lost-white-houses-trust-then-i...
1•0in•23m ago•0 comments

Low-latency NLP news pipeline written on FASM and Python

1•RAYoIN•26m ago•0 comments

SQLazy–Deterministic SQL Generation

https://github.com/SPLWare/SQLazy
1•ossdwa•27m ago•0 comments

The Benchmark Illusion: Pruned LLMs Can Pass Multiple Choice but Fail to Answer

https://arxiv.org/abs/2606.17609
1•ilreb•27m ago•0 comments

NOLA 'Nacular: One man's crusade to preserve New Orleans's vernacular signage

https://countryroadsmagazine.com/art-and-culture/people-places/nola-nacular/
1•NaOH•30m ago•0 comments

Ask HN: How likely is it that SpaceX buys OpenAI?

1•dwa3592•31m ago•1 comments

Exactly-Once Delivery Is a Spectrum, Not a Checkbox: Part 1

https://medium.com/@danthelion/exactly-once-delivery-is-a-spectrum-not-a-checkbox-part-1-3348d771...
2•danthelion•40m ago•0 comments

Stop Killing Games fails to secure EU law despite 1.3M signatures

https://www.dexerto.com/gaming/stop-killing-games-fails-to-secure-eu-law-despite-1-3m-signatures-...
4•slymax•40m ago•0 comments

CA AB 2015 Dept of Transportation 3rd Party navigation application study

https://leginfo.legislature.ca.gov/faces/billTextClient.xhtml?bill_id=202520260AB2015
1•hnburnsy•44m ago•0 comments

Linux Enacts Guidance to Tighten Acceptance of New File-Systems into the Kernel

https://www.phoronix.com/news/Linux-New-File-System-Docs
1•Bender•44m ago•0 comments

SpaceX valuation balloons to $2.6T, briefly passes Amazon

https://www.techsentiments.com/article/2026/06/16/spacex-valuation-balloons-to-26t-briefly-passes...
1•rajsuper123•49m ago•0 comments

Mozilla Firefox Usage of Zlib-Rs for Better Safety and Performance

https://www.phoronix.com/news/Mozilla-Firefox-zlib-rs-Usage
1•Bender•49m ago•0 comments

A Functional Taxonomy of World Models

https://drfeifei.substack.com/p/a-functional-taxonomy-of-world-models
1•doppp•49m ago•0 comments

Entropy

https://arch.dog/bark/entropy
2•Gathering6678•54m ago•1 comments

On Riding Tigers – The Dead Prussian

https://podcasts.apple.com/au/podcast/episode-121-on-riding-tigers-the-dead-prussian/id1073235080...
1•GreenSalem•58m ago•0 comments

America's AI Kill Switch Has No Rules – Lawfare

https://smallwarsjournal.com/2026/06/16/americas-ai-kill-switch-has-no-rules-lawfare/
2•GreenSalem•1h ago•0 comments

The Latest Way BYD Is Topping Tesla

https://www.fool.com/investing/2026/06/16/the-latest-way-byd-is-topping-tesla/
2•1vuio0pswjnm7•1h ago•0 comments

Amazon Faces Billions in Penalties from Potential FTC Ad Suit

https://www.bloomberg.com/news/articles/2026-06-16/amazon-faces-billions-in-penalties-from-potent...
4•ilreb•1h ago•0 comments