Background Tasks Are Finally Fixed in .NET 8

  Рет қаралды 103,819

Nick Chapsas

Nick Chapsas

11 ай бұрын

Use code ARCH15 and get 15% off the brand new Solution Architecture course on Dometrain: dometrain.com/course/getting-...
Become a Patreon and get source code access: / nickchapsas
Hello, everybody, I'm Nick, and in this video, I will show you how Background Tasks, Background Services or Hosted Services have changed in .NET 8. The changed in .NET 8 ultimately fix a lot of the complaints we had in previous versions.
Workshops: bit.ly/nickworkshops
Don't forget to comment, like and subscribe :)
Social Media:
Follow me on GitHub: bit.ly/ChapsasGitHub
Follow me on Twitter: bit.ly/ChapsasTwitter
Connect on LinkedIn: bit.ly/ChapsasLinkedIn
Keep coding merch: keepcoding.shop
#csharp #dotnet

Пікірлер: 150
@serus164
@serus164 11 ай бұрын
Classic 'hellœverybody' always brightens my day
@yearlyoatmeal
@yearlyoatmeal 11 ай бұрын
"euhlihstyocontent" if you add up all the time nick saves on not pronuncing consonants in his intros it'll be thousands of years. Time he generously puts towards giving us the best dotnet content in the world.
@EricPhillips89
@EricPhillips89 11 ай бұрын
​@@yearlyoatmealI actually don't know what that part is 😂
@yearlyoatmeal
@yearlyoatmeal 11 ай бұрын
@@EricPhillips89 it's "if you like this type of content" :)
@yearlyoatmeal
@yearlyoatmeal 11 ай бұрын
he explained in a comment a while back that the reason he speaks so fast has to do with viewer retention. In my humble opinion he would win by speaking a bit slower and clearer and then speeding the whole thing up afterwards. But I'm grateful for the great content anyways
@rodrigodearcayne
@rodrigodearcayne 7 ай бұрын
Also: “I’m Nick and in this video…” becomes “I’m naked in this video” 😂
@Kingside88
@Kingside88 11 ай бұрын
Thank you Nick. Great explanation! I think BeforeStart, Start and AfterStart would be less confusing.
@nitrovent
@nitrovent 11 ай бұрын
I guess that naming is a Microsoft thing.
@Kingside88
@Kingside88 11 ай бұрын
@@nitrovent sure. I have no complaint against Nick 😀
@nitrovent
@nitrovent 11 ай бұрын
@@Kingside88Well I didn't think so ;) Just wanted to emphasize Microsoft being Microsoft. I know >10 years old SharePoint code uses that naming convention e.g. in their feature receivers...
@mortentoudahl
@mortentoudahl 11 ай бұрын
Adding 'await Task.Yield' as the first statement will also prevent the background service from blocking
@f135ta
@f135ta 10 ай бұрын
I came here to say exactly the same thing! I've been doing that since day one with them!
@FrancoisNel256
@FrancoisNel256 8 ай бұрын
​​@@f135tathat wont really fix it. The host still awaits the StartAsync task. With Task.Yield, you just giving some other task in the queue to have a chance to do its work. Which is silly because at the time your StartAsync is called (assuming it is the first one), there is should be no other task in the TaskScheduler. And (without this new option) another StartAsync wont be called if the one before it has not yout completed.
@natan_amorim_moraes
@natan_amorim_moraes 4 ай бұрын
Outside the while loop?
@omfgiwantausername21
@omfgiwantausername21 4 ай бұрын
​@@natan_amorim_moraesyes
@veselinvalkanov
@veselinvalkanov 11 ай бұрын
OOOHHhh man if this new feature was released a few weeks earlier it would have saved me a lot of time. I had the exact same problem with worker-services management and had to come up with a custom solution. After this video I will update my project to .Net 8 :) This video seems to be made especially for me, thanks for everything. You are the best!
@CRBarchager
@CRBarchager 11 ай бұрын
Very nice explaination. I'm actually developping a service right now that can used this feature. I'll be looking forward to implementing them in the future.
@Nekroido
@Nekroido 11 ай бұрын
I implemented my own version of IHostedLifecycleService with exactly the same functionality for my pet project. I had a bunch of background processes sitting side by side and posting stuff to the shared in-memory message bus. Discord bot, Twitch chat bot, Twitch API polling, database storage abstraction, and REST API to manage all that. All have to start concurrently, and all have to be aware of the whole lifecycle of the application (starting, started, stopping, stopped), so they don't message into the void and clean stuff up properly. And I build the first PoC for .NET Core 2 which is now as old as a first-grader, haha
@apolo1805
@apolo1805 11 ай бұрын
Thank you Nick, this was so insightful
@vmachacek
@vmachacek 10 ай бұрын
i did use background service for many things and usually with the new timer which i found out about on this channel, thanks
@deeplerg7913
@deeplerg7913 11 ай бұрын
I think we should also have a per-service boolean that indicates whether the service can start in parallel or not. You might have multiple background/hosted services, and some of them might need to start before the application starts, while others might not care as much
@georgepagotelis
@georgepagotelis 11 ай бұрын
When to use channels in C#? Channels in C# are designed based on the single-producer, single-consumer (SPSC) pattern. They provide a reliable and efficient way to pass messages between producers and consumers in a concurrent system. The design of Channels in C# is optimized for scenarios where a single consumer processes the messages.18 May 2023 If you know, you know.
@davilinkicefire
@davilinkicefire 11 ай бұрын
I would prefer having 2 separate class named "BlockingBackgroundService" and "NoBlockingBackgroundService"
@prom3theu581
@prom3theu581 11 ай бұрын
I agree - this breaks anywhere where you are doing things such as migrations on app startup. The fact that IHostedServices ran in the order that they are registered makes them perfect for ensuring something is executing before the app framework launches. For example, MartenDb changed Db initialisation into an IHostedService in their latest version. Many libs handle it this way. I'd say there needs to be a separate interface which filters certain registrations to run in the previous format, and have the rest covered by IHostedService. Perhaps IStartupService? Technically these absolute run fifo services that we still need dont usually persist as background services for the lifespan of the app, once the task is finished, thats it - they are done. I always felt IHostedService was a bit misleading for those. This is purely unless all 'starting' tasks on the lifecycle service are guaranteed to run before any 'start' tasks, even if executed concurrently. If that is the case, then the new interface is exactly what we need
@parlor3115
@parlor3115 11 ай бұрын
@@georgepagotelis Channels aren't necessarily single producer nor consumer. You can have multiple of either. The only restriction they have is that a message may only consumed once. Also, they're not as good as Golang's channels since they don't allow capacities of 0 (aka producer-consumer synchronization).
@georgepagotelis
@georgepagotelis 11 ай бұрын
@@parlor3115channel.Reader.TryPeek() doesn’t consume the head message
@JustinAdler
@JustinAdler 11 ай бұрын
Simple reason to use a 'blocking' hosted service: DB migrations. Your migration might take a bit of time. Don't want the web app to start accepting connections when the migration hasn't completed - could mean your code would error because the DB is not in the correct state. Background hosted service not blocking are also great for other things, instead of having to use hangfire or Azure Functions etc. (keep them light weight though, peeps. might need to consider scaling out, etc).
@johnnyblue4799
@johnnyblue4799 11 ай бұрын
Migrations don't really belong on the start, but on the deployment pipeline... at least that's what I do.
@KieranFoot
@KieranFoot 11 ай бұрын
Or you could trigger your migrations from an IHost extension, giving you access to application services and blocking the app start as intended. I have never felt the need to block the start of a hosted service and if I did something that blocks, I would fire another Task anyway to do the work.
@mAcCoLo666
@mAcCoLo666 11 ай бұрын
Then run your migrations as part of your application startup pipeline. A bg service should run in the bg...
@johnnyblue4799
@johnnyblue4799 11 ай бұрын
@@mAcCoLo666 If your app has the right to run DDL scripts your security is compromised. The db user that your app uses should have r/, or r/w access at the most and execute if you're calling stored procedures.
@jelle2819
@jelle2819 11 ай бұрын
If you look at the implementation of the BackgroundService class you will see how starting with Yield or Delay will make it non-blocking for other services starting. I am always amazed that most programmers don't get that the first part of the async method executed in the time slice of the caller. Until it yields. Using Task to start off async work is thus tricky and that is where the blocking issue originates.
@slowjocrow6451
@slowjocrow6451 11 ай бұрын
Do you know any clearly explained tutorials about this? I'm really struggling to understand yield etc
@mazingguitar
@mazingguitar 11 ай бұрын
Yup, introducing new hooks is a big thing if there is need to do some async work on app closing for example. Great sharing, Nick!
@parlor3115
@parlor3115 11 ай бұрын
Why can't you do them in StopAsync?
@user-dc9zo7ek5j
@user-dc9zo7ek5j 11 ай бұрын
@@parlor3115 I think you can also do it after app.RunAsync stops.
@mazingguitar
@mazingguitar 11 ай бұрын
antipattern really and it will not work for some long pending async jobs and you have to watch out for cancellation tokens so fighting the framework feels like not a very good idea
@jamel056
@jamel056 11 ай бұрын
thanks for your amazing videos. i have a question : could we use background service to launch it at the stating of the project and use it to store some configuration in for example: a json file for the first time we launch the whole project ? and what is the best scenario for this situation ? thank you
@rogeriobarretto
@rogeriobarretto 11 ай бұрын
Excelent stuff coming up in .NET 8, thanks for the update Nick! Great video!
@garcipat
@garcipat 11 ай бұрын
We use background services for db migrstions and to keep observables for signal R or other reactive tasks.
@kjashzhvyktsul
@kjashzhvyktsul 11 ай бұрын
We use background/hosted services a lot. Typically we solve the blocking nature of them by starting worker task in startasync, storing task in private member and cancelling it in stopasync.
@fopsdev3676
@fopsdev3676 11 ай бұрын
i'm just curious. using a bg service, how do you prevent iis from recycling/stopping the bg service?. i've tried miriads of configurations options but at not avail. we basically need the bg service to be up and running even the page doesn't get used.
@kjashzhvyktsul
@kjashzhvyktsul 11 ай бұрын
@@fopsdev3676 we don't really use iis, httpsys on windows and kestrel on linux. Hosted services are mostly used in backend webapi-s. We didn't have any issues like you described.
@KieranFoot
@KieranFoot 11 ай бұрын
Just as everyone else does... This is not a fix.
@kjashzhvyktsul
@kjashzhvyktsul 11 ай бұрын
@@KieranFoot I didn't say it's a fix. It's a solution that works. I think there is no need to fix anything. Sometimes you need to block the start of the service sometimes you don't and there is always a way. And you can create small simple abstraction layer, extract it into library and re-use it across all your services. The only problem is that not everyone is aware of current behavior.
@user-dc9zo7ek5j
@user-dc9zo7ek5j 11 ай бұрын
@@fopsdev3676 Background services only get stopped if the application stops or you call the StopAsync from another part of your code. If you are using timers or tasks on StartAsync you have to store them in a field in order for them to not be disposed. Backgronud services have nothing to do with pages.
@T___Brown
@T___Brown 11 ай бұрын
Never had this issue. But i usually startup immediately and cache stuff later vs heavy startup.
@CricketThomas
@CricketThomas 11 ай бұрын
I was just using these in my app and i was wondering "how did i miss this video?!" only to realize it was uploaded 14 minutes ago lol
@namewastaken360
@namewastaken360 11 ай бұрын
I think the only way to rationalise the names is that they used start and stop already and needed a name for an event before start and stop, and starting and stopping was the best they could come up with
@ewilliams0305
@ewilliams0305 11 ай бұрын
I just wrote a service yesterday injected into a background service to assist with blocking my applications startup. Can’t wait to upgrade and delete everything 🎉
@cleitoncarlospereira2006
@cleitoncarlospereira2006 2 ай бұрын
Excellent content! I searched here but I couldn't find the explanatory video about the differences between Background Services and HostedService, could you give me the link please?
@kudorgyozo
@kudorgyozo 10 ай бұрын
so... where do you put the work in the second example? The IHosted(LifeCycle)Service? Do you create a timer manually to periodically do stuff?
@TeaVR
@TeaVR 10 ай бұрын
Be useful to have a real world example showing which method you should actually do the background work in and to show how Starting, Start, Started etc should be used
@serus164
@serus164 11 ай бұрын
Still missing feature is what to do if I wanted some of the services to start concurrently and some in strict order?
@W1ese1
@W1ese1 11 ай бұрын
Yep, the same thing came to my mind. I want to be able to configure on a service level whether I care if it's synchronously executed or not
@williameduardo7020
@williameduardo7020 2 ай бұрын
I used an azure function as my background service. But involves passing a message from one system to another.😊
@michaelakin766
@michaelakin766 11 ай бұрын
Good info. just FYI though, the audio sounded very weird today.
@OsamaALSHABANi
@OsamaALSHABANi 7 ай бұрын
I have question here about this background service ,once we deploy the web app to IIS the background service would not work until a request coming from any client! ,otherwise it will not started how could i fix this ?
@THE_NE0
@THE_NE0 11 ай бұрын
Can you create and remove background jobs programmatically like hangfire ?
@jasoncox7244
@jasoncox7244 11 ай бұрын
This is /exactly/ what I need right now lol. I have a particular service that depends on a rediculous Google Calendar API query (like upwards of 40seconds retrieval time); but once that data is retrieved, it isn't likely to change very often. So I have a service that Caches that query result and periodically checks for changes while the end users get fast results from the cached data. This will make that service so much cleaner.
@KieranFoot
@KieranFoot 11 ай бұрын
This is one "fix" I wish they didn't make. There is a very good reason that BackgroundService is written the way it is and I do not agree that using the currently provided methods for background work are broken at all. Now a single host-wide setting might have unintended consequences when using 3rd party libraries.
@andreaspetersen2662
@andreaspetersen2662 11 ай бұрын
Brainlessly using 3rd party libs without Reading docs, or using bad ones that have no docs always had some sort of consequence
@FrancoisNel256
@FrancoisNel256 8 ай бұрын
My exact sentiment. We have written libraries with a very good reason to have one IHostedService.StartAsync not start before another has. Now, some ignorant dev is going to enable this new option for (maybe a legitimate reason for one usecase) and potentially causing a trainsmash with other IHostedService implementations. If anything, they should have made this an option per implementation.
@RasulAbuMuhammadAmin
@RasulAbuMuhammadAmin 9 ай бұрын
The annoying problem in these services is scaling. When you run multiple pods with your app, and each of them running their own background services, when what you really need is only one. (Like db interaction, external api call, etc).
@arielunanue4354
@arielunanue4354 11 ай бұрын
It's a great video, but it is a bad practice to put that kind of code (calls that might take a while to complete) in the startAsync. Just move all that code to the ExecuteAsync method.
@JohanNordberg
@JohanNordberg 11 ай бұрын
What would be the best way to execute a background service on a schedule now? I think I remember you have a video about this in the past, but what is best now with .net 8 and these improvements? Say, like, I want to execute a job every hour, or at 01:00 AM every day.
@chris-pee
@chris-pee 11 ай бұрын
Doesn't seem like there are any improvements on that front, so your best option is still manually using PeriodicTimer in a BackgroundService. Google "Run and manage periodic background tasks in ASP NET Core 6" for a pretty good article on that.
@justgame5508
@justgame5508 11 ай бұрын
Way I do it is similar to what’s discussed here in the ExecuteAsync method await some Task.Delay(TimeSpan). To get the timespab you need there is a great library called Quartz that effectively parses Cron schedules. You can get the time delta from now -> next cron schedule execution and await that in the Task.Delay
@igelineau
@igelineau 11 ай бұрын
Hangfire comes to mind
@saravananani4933
@saravananani4933 6 ай бұрын
Hi Nick, Unable to call the external WCF by adding the URL as service reference in the C# lambda function . can you please help me on this . when I am adding as a service reference its not recognizing the service client and method contracts .
@tidianediallo6199
@tidianediallo6199 7 ай бұрын
good job 🙂🙂🙂🙂
@bjmmedeiros13
@bjmmedeiros13 11 ай бұрын
Let me see if I understand correctly: the new interface IHostedLifecycleService should be used when you need to execute something once at application start (or stop), and the BackgroundService should still be used for tasks like periodically polling a queue?
@grumpydeveloper69
@grumpydeveloper69 11 ай бұрын
Thats how I picked it up as well. I know I have seens IHostedServices that just spin up a long running background Task in the StartAsync to get something like the BackgroundService. I have lso thought that that (how we picked it up) is not actually how it is ment to be used.
@Mark-px3rq
@Mark-px3rq 11 ай бұрын
That’s how BackgroundService implements it.
@ashishoffline
@ashishoffline 3 ай бұрын
Does this change anything (except for IHostedLifeCycleService interface) for Worker Service project with multiple Background Service ? Basically does ServiceStartConcurrently has any impact ? It isn't available in WorkerService project.
@aracon9721
@aracon9721 11 ай бұрын
Is Solution Architecture something like CQRS which you only need when you develop on really large applications? So I probably wont ever need it?
@user-xm4oo5dp7x
@user-xm4oo5dp7x 4 ай бұрын
I still cannot understand why dotnet team didn't introduce something OOB for running anonymous background tasks via background job and default queue channel for it. Like some service where I can put my Task, get tracking Id for it and just to be sure that it will be executed eventually (something similar to what Hangfire do, event it's just in memory queue). It is strange that I need to implement custom service for which individual peace of domain logic, taking into account that it could be done in domain-agnostic way easily
@aiml856
@aiml856 11 күн бұрын
Hi @Nick Chapsas Recently I developed .NET 6 MVC application, it contains background service and it deployed it on IIS by using timer class I am able to run the Background service specific intervals. One issue I noticed is App Pool recycling be default 29 hours, Once I manually run the app in browser then app initialized and background service also starts running how to up the background service as soon as App Pool Recycled or Restarted need your suggestions please
@colincbcampbell
@colincbcampbell 11 ай бұрын
Hi.. Are these background services and hosted services still seen as singleton? Reason for the question of course revolves around running EF Core databases or scoped dependency injections that would still require using / creating the service scope, unless you bring the DBContext in as singleton, which is highly frowned upon..
@hyperpaus
@hyperpaus 11 ай бұрын
You can inject a DbContextFactory as Singleton, then create the DbContext when you need it. (And dispose of it quickly). This is better than having to inject IServiceProvider . For Service that don't have such a factory alternative, I'm afraid injecting IServiceProvider is the way to go.
@colincbcampbell
@colincbcampbell 11 ай бұрын
@@hyperpaus- Thanks.. that's exactly what I am doing at the moment - creating a db scope from the DBContextFactory when i need to get information out of the DB.. I am, however, exploring one level up now - aka creating scope in the singleton wrapper class for a scoped class and dependency injecting the DBContext into the scoped class.. I will feedback once working.. 😉
@br3nto
@br3nto 11 ай бұрын
I wish I had the ability to stop and start and add and remove hosted background services myself at runtime.
@phnxbr
@phnxbr 5 ай бұрын
Thank you. I was developing my kludge workaround when I found your tutorial. I also would like to fail the whole service if some of the background services didn't went live/recovered after some time. For example, during lost connection. Actually, your example didn't help me. The whole service froze
@GavSaysPogMoThoin
@GavSaysPogMoThoin 20 күн бұрын
Do a video on Temporal!
@UweKeim
@UweKeim 11 ай бұрын
I've used Background Services in the past, but still prefer a good old C# console application that is cyclically ran by the Windows Task Scheduler. In my 20+ years of experiences this beats every other technology, including Windows Services.
@Benke01
@Benke01 11 ай бұрын
Will work great in Linux Docker. 🙃
@UweKeim
@UweKeim 11 ай бұрын
@@Benke01 Honestly, I do not know, as I'm nearly using Docker close to never. I would assume that it also could run just as well as a cronjob?
@johnnyblue4799
@johnnyblue4799 11 ай бұрын
Windows Services have a different use case. It's not a substitute for scheduling tasks, although you can use them that way.
@Benke01
@Benke01 11 ай бұрын
@@UweKeim As it is now it will be platform independent and you can easily use it in the cloud or just spin it up locally without having to do any Windows service setup. A cronjob however run on a timed schedule. You can mimic that with a background service but less conveniently.
@Nekroido
@Nekroido 11 ай бұрын
This also naturally fits into distributed/microservice architecture. I can have multiple chat bots, DB abstractions, and a REST API in one executable to run on my gaming PC, but putting them into separate Docker containers gives me way more control and flexibility.
@timh8324
@timh8324 2 ай бұрын
Im trying to fix my issue where if it takes a little too long to shutdown and you had used the restart service to restart it - it will fail restarting because it exceeds the timeout.
@HokKeinInder
@HokKeinInder 8 ай бұрын
Will this be functional in Maui?
@brightshadow9480
@brightshadow9480 11 ай бұрын
You should've passed your cancellation token to your Task.Delay()
@metaltyphoon
@metaltyphoon 11 ай бұрын
Ok now tell me: why couldn’t they add the new interface methods on the IHostedServices interface and have a noop for those extra methods?
@SytheZN
@SytheZN 11 ай бұрын
Adding them to the interface would force everyone who has implemented that interface to update their code to include the new members, and would break if you tried to run anything that was compiled against the older interface on the newer one.
@qj0n
@qj0n 11 ай бұрын
⁠@@SytheZN...unless they added default implementations for them. However I think it's still would be an overkill to have 6 methods on simple IHostedService interface, now it's easy Start and Stop, more complex cases are quire rare anyway
@kaiserbergin
@kaiserbergin 11 ай бұрын
No more yielding that long startup task!
@soft.developer
@soft.developer 6 ай бұрын
Timezone is always wrong. What can i do to fix it? 4 or 5 hours of differences
@sergeybenzenko6629
@sergeybenzenko6629 11 ай бұрын
In the background .NET just puts all hosted services into group of tasks and does await Task.WhenAll(). So the difference with the prevoius approach is that several hosted services start concurrently between themselves as opposed to being started one after another in order of registration, not that the application now starts concurrently with the background services. So, I'm not sure that your statement at 7:29 is accurate.
@marcome1953
@marcome1953 11 ай бұрын
Is Hangfire still a good choice to manage background tasks in 2023?
@FrancoisNel256
@FrancoisNel256 8 ай бұрын
Yes. It has its place. But Hangfire an IHostedService is not in the same category. IHostedService is tied to the lifetime of a hosted service. Hangfire runs tasks on a schedule.
@KlemensSoftware
@KlemensSoftware 10 ай бұрын
Imagine you have one background service that creates a request every minute to some third party API. Now also imagine if you have multiple instances of your webapp running. Does this mean that every instance will make a request every minute? How would you limit execution of a background service to one instance?
@pavfrang
@pavfrang 11 ай бұрын
What is the purpose of having a Starting and Stopping handlers? This was not clear. Aren't the Start/Stop handlers sufficient?
@Thenewvoice-pc5re
@Thenewvoice-pc5re 2 ай бұрын
You missed one important topic. Communication between the background/hosted service and the main thread but brillant otherwise.
@blaze9872
@blaze9872 4 ай бұрын
It's features like these that make me want to migrate from framework
@ahjsbkdjhavkcjhvac
@ahjsbkdjhavkcjhvac 11 ай бұрын
update ur ride man :D
@lizard450
@lizard450 8 ай бұрын
... doubt it...
@TampaCEO
@TampaCEO 11 ай бұрын
For many years, JAVA ruled the business software world due to its ability to run on multiple platforms including Linux (which allows it to run in containers). Ever since .NET core came out, however, that advantage was erased. When you combine this fact with the .NET framework & the incredible advancements to the C# language, I can't see why anyone would choose JAVA over .NET today. Thanks for another great video.
@maththaioseleutheriaphilos2320
@maththaioseleutheriaphilos2320 11 ай бұрын
And how is dbcontext running now? Does it still need Scope Factory?
@Velociapcior
@Velociapcior 11 ай бұрын
I use Coravel for Queues
@bluecup25
@bluecup25 11 ай бұрын
Hellovrybody
@DigitalNomadOnFIRE
@DigitalNomadOnFIRE 11 ай бұрын
Nick The Greek....
@gavinlangley8411
@gavinlangley8411 11 ай бұрын
Don't do it at all. Post a message to a queue and expose and API instead.
@KonKri
@KonKri 11 ай бұрын
Sometimes a queue is too much of a pain for simple tasks.
@georgepagotelis
@georgepagotelis 11 ай бұрын
protected override async Task ExecuteAsync(CancellationToken stoppingToken) { *await Task.Yield();* ^-- blocking nature does NOT exist if you you yield control back to the minimal api (app whatever) you're running while your backgroundhost service takes "20 seconds". No need for that fancy code. Microsoft need to fix two things, when published it "automatically" kicks off instead of having to hit the URL endpoint and application lifetime starting/stopping (i'm hoping has been fixed cause it's a little weird knowing if deployment or it's crashed etc).
@JackBauerDev
@JackBauerDev 11 ай бұрын
Microsoft? You mean .Net foundation ;P
@timur2887
@timur2887 11 ай бұрын
Such a long jorney for MS to make a clean code... And this is not a rocket science after all
@jamesdraughn5072
@jamesdraughn5072 11 ай бұрын
Just an FYI, every time I see the words finally, insane, genius ect.. I go out of my way to NOT watch the video, even if it's from a content provider I am subscribed to. If it happens enough, I end up unsubscribing.
@MrFoxPro
@MrFoxPro 11 ай бұрын
Thank god I'm not using c# anymore
@MaximilienNoal
@MaximilienNoal 11 ай бұрын
Why not ?
@konrad2431
@konrad2431 11 ай бұрын
What are you using instead?
@marcobaccaro
@marcobaccaro 4 ай бұрын
Welcome back to the Global.asax
@artemivanov2141
@artemivanov2141 8 ай бұрын
What is the name of video about Hosted Service on this chanel? I can't find it @nickchapsas
@mortentoudahl
@mortentoudahl 11 ай бұрын
Adding 'await Task.Yield' as the first statement will also prevent the background service from blocking
@Mark-px3rq
@Mark-px3rq 11 ай бұрын
How does it manage that?
@thomai5287
@thomai5287 11 ай бұрын
@@Mark-px3rq Yield will return from the Task and continue in the background.
@mAcCoLo666
@mAcCoLo666 11 ай бұрын
But why waiting synchronously on a bg service? Especially seen as you can make it await.
@justengineering1008
@justengineering1008 11 ай бұрын
configureAwait does not fix this, does it? it is obvious that “await” by default is running in the same thread.
@mortentoudahl
@mortentoudahl 11 ай бұрын
@@justengineering1008 No it doesn't. That's why I didn't mention configureawait ;-)
The .NET 8 Auth Changes You Must Know About!
10:27
Nick Chapsas
Рет қаралды 136 М.
The New .NET 9 HybridCache That You Must Upgrade To!
14:34
Nick Chapsas
Рет қаралды 48 М.
아이스크림으로 체감되는 요즘 물가
00:16
진영민yeongmin
Рет қаралды 58 МЛН
Was ist im Eis versteckt? 🧊 Coole Winter-Gadgets von Amazon
00:37
SMOL German
Рет қаралды 39 МЛН
Don't throw exceptions in C#. Do this instead
18:13
Nick Chapsas
Рет қаралды 253 М.
Scheduling Background Tasks In .NET With Quartz
10:51
Milan Jovanović
Рет қаралды 34 М.
Why Developers Hate "Clean Code"?
14:39
Nick Chapsas
Рет қаралды 58 М.
Brutally honest advice for new .NET Web Developers
7:19
Ed Andersen
Рет қаралды 92 М.
The Smart Way of Using the Decorator Pattern in C#
12:37
Nick Chapsas
Рет қаралды 66 М.
"Stop Using Async Await in .NET to Save Threads" | Code Cop #018
14:05
Don't Use Polly in .NET Directly. Use this instead!
14:58
Nick Chapsas
Рет қаралды 52 М.