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

แชร์
ฝัง
  • เผยแพร่เมื่อ 15 พ.ย. 2018
  • This presentation was recorded at GOTO Amsterdam 2018. #gotocon #gotoams
    gotoams.nl
    Erwin de Gier - Building bleeding-edge crypto platform WeAreBlox at Trifork
    ABSTRACT
    Everything is reactive. Your application reacts to the click of a button, an incoming message. But also to the result of a database query. Between these events, you want to process other tasks. Being reactive needs a complete approach. Let’s look at the state of reactive programming in Java. Which frameworks are available? Do we have everything to build enterprise grade reactive applications? How to we produce readable and maintainable code?
    We will explain which framework we use in our microservice platform for a cryptocurrency trading application, why we [...]
    Download slides and read the full abstract here:
    gotoams.nl/2018/sessions/623
    / gotoamst
    / gotoconference
    / goto-
    gotocon.com
    #Java #ReactiveProgramming
    Looking for a unique learning experience?
    Attend the next GOTO Conference near you! Get your ticket at gotocon.com
    SUBSCRIBE TO OUR CHANNEL - new videos posted almost daily.
    th-cam.com/users/GotoConf...
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 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.

  • @user-vp6dd1fz6p
    @user-vp6dd1fz6p ปีที่แล้ว +1

    Great overview of Reactive programming, thanks!

  • @vinaypatil9282
    @vinaypatil9282 5 ปีที่แล้ว +2

    Great presentation and quality content Erwin 👍dankewell

  • @mati1979b
    @mati1979b 5 ปีที่แล้ว +4

    Thank you for excellent content!

  • @rarknoefi7545
    @rarknoefi7545 5 ปีที่แล้ว +2

    nice practical overview, thanks

  • @armynyus9123
    @armynyus9123 5 ปีที่แล้ว +2

    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 ปีที่แล้ว +3

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