flatMap with Flux in Project Reactor

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 ธ.ค. 2024

ความคิดเห็น •

  • @AleksandarT10
    @AleksandarT10 ปีที่แล้ว +1

    Great explanation! Pretty much explains the subject in a great detail. It would be great if groupBy along with flatMap can be explained

    • @muhammedshakir7040
      @muhammedshakir7040  ปีที่แล้ว +1

      Hi @Alexsander, actually I do corporate trainings and record them sometimes. This is one such recording. If I happen to do record on groupBy, will certainly upload !

  • @farhaankazi7134
    @farhaankazi7134 10 หลายเดือนก่อน

    Awesome. It cleared all my doubts.

  •  2 ปีที่แล้ว +1

    The best video on this subject. I finally came to understand FlatMap. I had a good base, but had not been able to really "visualize" it, in operation, until now. Excellent work!
    Please consider creating a paid course on Udemy. Your didactics could help thousands of students! Cheers from Brazil.

  • @mowglishihtzutoy5197
    @mowglishihtzutoy5197 ปีที่แล้ว +1

    great video

  • @kj6372
    @kj6372 3 ปีที่แล้ว +1

    This sir is a very good tutorial. Looking forward for more

  • @khaoulaouifaya585
    @khaoulaouifaya585 ปีที่แล้ว

    hi i need your help please can you help me in small exercice

  • @MrVijay877
    @MrVijay877 3 ปีที่แล้ว

    if there was an api that returned a Mono and I want to get Flux that belong to that Mono, how do I go about doing that?

  • @escanorLion168
    @escanorLion168 2 ปีที่แล้ว

    Hi! Question. How to remove an element under a certain condition from a flux?

    • @muhammedshakir7040
      @muhammedshakir7040  2 ปีที่แล้ว +1

      Hi Edward. The very idea of removing an element from flux is flawed. Flux is a reactive stream over some other datasource. Flux does not own or contain the data. Flux publishes the data from the data source (reactively). However, you can very well apply a filter on flux (as you do in case of streams) and get only the elements you need. Hope this helps

  • @saansimple
    @saansimple 3 ปีที่แล้ว

    Sir please update more video on Webflux

    • @muhammedshakir7040
      @muhammedshakir7040  3 ปีที่แล้ว

      You may want to check / share this : th-cam.com/video/bSu2p5ugCTg/w-d-xo.html

  • @carlitos4007
    @carlitos4007 2 ปีที่แล้ว

    As i can count of a Flux in Java WebFlux, when use Block, generate me error. Help please!

    • @muhammedshakir7040
      @muhammedshakir7040  2 ปีที่แล้ว +1

      I believe you are writing code in Spring Reactive Web application. You cannot use Block, BlockLast and BlockFirst that is executed in NIO Reactor Thread