Cancellation Token in .NET | Exploring C# and DOTNET

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 ก.ค. 2024
  • Hey 👋 Imagine having a long-running request triggered by a user on your server. But, the user is no longer interested in the result and has navigated away from the page.
    However, the server is still processing that request and utilizing resources until you come along and implement Cancellation Tokens in the application code.
    .NET uses Cancellation Token for cooperative cancellation of asynchronous or long-running synchronous operations.
    So let’s learn more about Cancellation Token and save some of that server compute time.
    I will show you the problem of unnecessarily spending server resources on no longer required processes and how to solve them using Cancellation Tokens.
    We will see an example of using Cancellation tokens in a console application, in a long-running HTTP API Endpoint, and when making external calls to API Endpoints. I will use Amazon S3 to show how you can use Cancellation Tokens to cancel from uploading large documents when they are no longer required.
    Thank you to AWS for sponsoring this video.
    🔗 Blog - www.rahulpnath.com/blog/cance...
    🔗 Code - github.com/rahulpnath/youtube...
    00:00 Introduction
    00:44 The Problem
    03:22 What is Cancellation Token
    04:48 Cancellation Token Demo
    08:12 Passing Cancellation Tokens
    10:09 Listening to Cancellation Requests
    10:32 Cancellation Token In API
    13:30 Cancellation Token and HTTP API Calls
    13:54 AWS S3 Storage
    18:05 Should you always Cancel?
    Additional Watching
    📹C# Series - bit.ly/mycsharp
    📹 ASP Series - bit.ly/asp-net-core-series
    📹Azure Series - bit.ly/azure-series
    📹AWS Series - bit.ly/aws-net-series
    📹RabbitMQ Series - bit.ly/rabbitmq-net-series
    Come say hi! ✋
    🎙️Uses - www.rahulpnath.com/uses
    🌍Blog - www.rahulpnath.com/
    ✉ Subscribe to my Newsletter - www.rahulpnath.com/subscribe
    🐦Twitter - / rahulpnath
    📸Instagram - / rahulpnath
    #dotnet #csharp
  • แนวปฏิบัติและการใช้ชีวิต

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

  • @daStitches
    @daStitches 4 หลายเดือนก่อน +7

    I would be interested in seeing some of those other patterns you were talking about for handling cancellation tokens!

    • @RahulNath
      @RahulNath  4 หลายเดือนก่อน +1

      Thank you Ralph. Adding this to my list!! Glad you liked this.

  • @ChosenHandle
    @ChosenHandle 3 หลายเดือนก่อน

    Your channel is a gem. Really clear delivery of concepts with coherent and easy to follow examples. Thanks for the upload.

    • @RahulNath
      @RahulNath  3 หลายเดือนก่อน

      Glad you think so!

  • @sureshp34
    @sureshp34 4 หลายเดือนก่อน +1

    Thanks for posting this video, I was requested to post the the cancellation token video a long back ago. This video will helps me to implement in my project. Thanks a lot.

    • @RahulNath
      @RahulNath  4 หลายเดือนก่อน

      Glad it was helpful Suresh! Do let me know if you have any other suggestions.

  • @akashkarve1991
    @akashkarve1991 4 หลายเดือนก่อน

    Nice video and very well explained. Would like you to request to create more videos on cancellation token. Cheers !!!

  • @sreekumar7875
    @sreekumar7875 4 หลายเดือนก่อน

    Superb Video, glad you made this type of useful contents

  • @arjunanselvam
    @arjunanselvam 4 หลายเดือนก่อน

    Thanks a lot Rahul. I was reading this topic yesterday. Now you have upload video for the same. I am also watching your aws videos. It is really fantastic.

    • @RahulNath
      @RahulNath  4 หลายเดือนก่อน

      Glad you like it Arjun! Do let me know if you have any suggestions or feedback

  • @m3coo
    @m3coo 4 หลายเดือนก่อน

    Very helpful! Thanks a lot Rahul

    • @RahulNath
      @RahulNath  4 หลายเดือนก่อน

      Most welcome Faisal!

  • @kj2w
    @kj2w 4 หลายเดือนก่อน +1

    Yay!!! New Rahul Nath content!!

    • @RahulNath
      @RahulNath  4 หลายเดือนก่อน

      Thank you for your support!!

  • @abuzeromohammed3386
    @abuzeromohammed3386 4 หลายเดือนก่อน

    You are great Sir thank you

    • @RahulNath
      @RahulNath  4 หลายเดือนก่อน +1

      So nice of you - thank you ! And you call me Rahul 😀Do let me know if you have any topic suggestions or feedback

    • @abuzeromohammed3386
      @abuzeromohammed3386 4 หลายเดือนก่อน

      ​@@RahulNath new advance topic like Mico services and how they communice or for me Identity server 4 or you dive in this topic how user can make searching for example and another button for cancel the searching

  • @susantasahoo3457
    @susantasahoo3457 4 หลายเดือนก่อน +1

    Great learning video,thank you..can you please share git path also?

    • @RahulNath
      @RahulNath  4 หลายเดือนก่อน

      Glad you liked it Susanta - Code is available here github.com/rahulpnath/youtube-samples/tree/main/cancellation-token-example

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

    Great presentation and video series.
    In the console project, you initiate cancellation using a button press. In the API, you demonstrate cancellation when the browser is closed. Is there a way to implement cancellation from a button click in a .NET UI to cancel the API without closing the browser, or through a refresh action?

    • @RahulNath
      @RahulNath  วันที่ผ่านมา +1

      Thank you! You should be able to use AbortController! I will try and do a video around this topic.

  • @blueLavender-s7f
    @blueLavender-s7f 4 หลายเดือนก่อน +1

    My ask might be basic, but Could you Please add an Example where UI can call a cancellation as in realtime where we cant capture console.keypress or swagger window closure

    • @sivasankaransomaskanthan8264
      @sivasankaransomaskanthan8264 4 หลายเดือนก่อน

      By "UI" Are you referring to desktop or mobile native UI like WinForms , WPF, UNO or Avalonia UI ?

  • @aijazchauhan865
    @aijazchauhan865 3 หลายเดือนก่อน

    Please please creaate separte video which covers other methods to cancel the operation. it would be very helpfull to me.

  • @TellaTrix
    @TellaTrix 4 หลายเดือนก่อน

    Does it cancel database operations? if I requested Cancellation Token does it cancel all long running sql query?

    • @RahulNath
      @RahulNath  4 หลายเดือนก่อน

      Yes it does if you pass along the token.

  • @rahulgadekar5460
    @rahulgadekar5460 4 หลายเดือนก่อน +1

    Hi Rahul can you please make a tutorial on azure durable functions 😊 Thanks in Advance

    • @RahulNath
      @RahulNath  4 หลายเดือนก่อน

      Thank yo ufor the suggestion Rahul. Yes this is on my list!

  • @AkashM20
    @AkashM20 4 หลายเดือนก่อน +1

    Hey Rahul, what is the terminal that you are using

    • @RahulNath
      @RahulNath  4 หลายเดือนก่อน

      Windows Terminal - More details here www.rahulpnath.com/blog/setting-up-windows-terminal/

  • @carlos.maradiaga
    @carlos.maradiaga 4 หลายเดือนก่อน

    Excelente, thank you for sharing this topic. Do you have this source code in somewhere to download ?, Thank you.

    • @RahulNath
      @RahulNath  4 หลายเดือนก่อน +1

      Glad you liked it Carlos. Yes the source code is available here github.com/rahulpnath/youtube-samples/tree/main/cancellation-token-example

    • @carlos.maradiaga
      @carlos.maradiaga 4 หลายเดือนก่อน

      Thank you so much. @@RahulNath

  • @informer9261
    @informer9261 4 หลายเดือนก่อน

    sir please make an c# full course , 2024

    • @RahulNath
      @RahulNath  4 หลายเดือนก่อน +1

      Thank you for the suggestion. I'm planning to add more videos around C# fundamentals to this channel.