Master Multithreading : Thread Pool In C++

Пікірлер: 22

  • @hyesungmoon4750
    @hyesungmoon47504 ай бұрын

    You are so good at explaining the code. This video is really helpful. Appreciate your time and effort to create this video!

  • @mdtarikbosunia2435
    @mdtarikbosunia24354 ай бұрын

    I love your every video. thanks for making videos

  • @aaryaguru4732
    @aaryaguru47324 ай бұрын

    Thank so much for making understanding each and every line of code along with OS concept😊😊

  • @mohanrajanna9026
    @mohanrajanna90263 ай бұрын

    excellent video. very clear

  • @saravanavijayan1
    @saravanavijayan1Ай бұрын

    Good explanation and highly appreaciated.

  • @RomilAggarwal611
    @RomilAggarwal6113 ай бұрын

    Thanks, nice video! During this video I got stuck in an endless loop while learning about capture clauses in lamdas, std::function, move, forward, default, delete and probably a couple more while watching this video 😅 I had too many gaps. actually, I landed in this playlist cuz I got stuck in one such loops and my stack has now definitely overflowed and I don't even remember what I was studying in the first place... I was studying caching but I don't even remember how I ended up here.

  • @bhushanrane7459
    @bhushanrane74594 ай бұрын

    Thank Bro ❤

  • @janardhanreddy1180
    @janardhanreddy11804 ай бұрын

    Finally we saw you 😊

  • @firstnamelastname-tr8fo
    @firstnamelastname-tr8fo4 ай бұрын

    Thank you for the tutorial. I would like to know how one could receive the return value of a task or wait for a specific task to finish before proceeding.

  • @CppNuts

    @CppNuts

    4 ай бұрын

    promise And future In C++ kzread.info/dash/bejne/iniOzduKhtbIdLw.html This is the way..

  • @sudarshanadigak28
    @sudarshanadigak284 ай бұрын

    Can you please make few videos on how to communicate with DB like Oracle SQL in cpp?

  • @CppNuts

    @CppNuts

    4 ай бұрын

    This will take time maybe..

  • @DiegoCapoccitti
    @DiegoCapoccitti4 ай бұрын

    Thank you for this video, it's very interesting! I have a question: is there a way to know when all the threads have completed their work so that the main thread can wait? Thank you.

  • @CppNuts

    @CppNuts

    4 ай бұрын

    The current code will wait for all the work to finish then only it will terminate. Because termination is written in Destructor it will start the destroying when return 0; is hit. But in thread if you see there is a check (stop && tasks.empty ()) this will not allow to return from thread if tasks queue is not empty. I will paste the current code link you can run and check it will br very helpful.

  • @DiegoCapoccitti

    @DiegoCapoccitti

    4 ай бұрын

    @@CppNuts Thank you!

  • @kirandhegaskar9298
    @kirandhegaskar92984 ай бұрын

    Why vector worker has not type of function, as we are pushing lambda function to it

  • @purushothamanv.a.1090
    @purushothamanv.a.10904 ай бұрын

    Please Explain MFC

  • @nitin_puranik
    @nitin_puranik4 ай бұрын

    Why does every KZread thumbnail now have the host with either their mouth open in the O-shape or a finger on their lips? Does the KZread algorithm give an extra push to such videos now? Humanity now seems to be on an intellectual race to the bottom! No complaints about the content of this video. Great one, thanks brother!

  • @CppNuts

    @CppNuts

    4 ай бұрын

    I thought let's just do what others are doing may be they are doing for some reason 😬 I never did the research.. 🙃 Thanks for putting thoughts on this, I also feel the same way now.

  • @RAMANKUMAR-xl4pr
    @RAMANKUMAR-xl4pr28 күн бұрын

    Thanks for the nice content, where is the source code for the same video. Can you share it, what is the process to get the code for videos? Thanks

  • @CppNuts

    @CppNuts

    2 күн бұрын

    Plz check channel about page. You will get the link of git hub