Continuations: The magic behind virtual threads in Java by Balkrishna Rawool @ Spring I/O 2024

Поділитися
Вставка
  • Опубліковано 27 чер 2024
  • Spring I/O 2024 - 30-31 May, Barcelona
    Slides: speakerdeck.com/balkrishnaraw...
    Repo: github.com/balkrishnarawool/c...
    Have you wondered how virtual threads in Java are able to provide such high scalability? How is JVM able to switch between so many virtual threads while executing a single platform thread? If you did then this talk is for you.
    A Continuation is the magic that powers Virtual Threads. It can be viewed as a representation of the current state of the program or it can be viewed as a reference to the rest of the program. It helps us to pause execution of a program (or part thereof) and then resume it later. This ability to pause/resume is a powerful mechanism and is the basis for providing virtual threads.
    In this talk, we will start with explaining what continuations are and how does Continuation API in Java work. We will also explore the uses of continuations. And more importantly, we will write our own simple VirtualThread class using the Continuation API provided by JDK. This gives clear idea about the role of continuations in the nature of virtual threads.
  • Наука та технологія

КОМЕНТАРІ • 9

  • @ShubhamYadav-lt6dt
    @ShubhamYadav-lt6dt День тому +1

    One of the best session that i have ever watched to understand virtual thread

  • @sakshamgupta8736
    @sakshamgupta8736 2 дні тому +1

    Great talk!

  • @HasanKumas-bn1ye
    @HasanKumas-bn1ye День тому

    Quite interesting topic with a great presentation! Thanks a lot Bala!

  • @bowenwang
    @bowenwang 4 дні тому +4

    An in-depth presentation

  • @costathoughts
    @costathoughts 4 дні тому +4

    That is an amazing talk !!!!

  • @KravchenkoIvan94
    @KravchenkoIvan94 2 дні тому

    Thank you! Great talk, the first 40 minutes are quite good but you lost me in the last ten ones, I had to rewatch it

  • @KushParsaniya
    @KushParsaniya 4 дні тому +2

    amazing talk!

  • @anug14
    @anug14 2 дні тому

    Give a short version too pls

  • @razatech22
    @razatech22 4 дні тому

    Expecting a real world application using threads