Real-world Reactive Programming in Java: The Definitive Guide • Erwin de Gier • GOTO 2018

Поделиться
HTML-код
  • Опубликовано: 3 янв 2025

Комментарии • 8

  • @DouglasSchmidt
    @DouglasSchmidt 4 года назад +9

    BTW, Java 8 streams don't necessarily need to come from a fixed-sized input source, though that is a common use-case. Also, Java 8 streams can be integrated with Java 8 completablefutures, thereby combining streams and async processing.

  • @ВоробійВіталій
    @ВоробійВіталій Год назад +1

    Great overview of Reactive programming, thanks!

  • @vinaypatil9282
    @vinaypatil9282 5 лет назад +2

    Great presentation and quality content Erwin 👍dankewell

  • @mati1979b
    @mati1979b 6 лет назад +3

    Thank you for excellent content!

  • @rarknoefi7545
    @rarknoefi7545 6 лет назад +1

    nice practical overview, thanks

  • @armynyus9123
    @armynyus9123 5 лет назад +1

    Dankewell! Very very helpfull.

  • @rommellagera8543
    @rommellagera8543 2 года назад

    How did the shown code sample become non thread blocking? You will still be on the thread waiting. Without callback it will still be blocking. But with callback your once single continuous process will jump in different places making code comprehension more difficult. Kindly correct me if I am wrong.

  • @eimertvink
    @eimertvink 5 лет назад +2

    Tiny remark: 32:30 two public classes in one file does not compile.