Like as always, concise and straight to the point. You are amazing Shawn. Keep it up.
@sh00termacg8 ай бұрын
Awesome thanks a lot Shawn! Love how concise you are.
@adamoneil74358 ай бұрын
really cool! I knew Quartz was a thing, but had never seen a demo until now. Love it!
@swildermuth8 ай бұрын
Nice.
@SamRaddan8 ай бұрын
Hey Shawn, can you make a general c# video on streams?
@PankajNikam8 ай бұрын
Thanks for this video :)
@swildermuth8 ай бұрын
My pleasure!
@palpie8 ай бұрын
It was just a small part of this, but you should use ILogger as it is meant to, without string interpolation.
@swildermuth8 ай бұрын
So we should avoid $""? Why?
@nirajchandrajoshi8 ай бұрын
Great video I have one query - can I run a stored proc on crown schedule where that sproc took 20 minutes to complete. And What happen if IIS pool recycles in between while this job is running do I need to reschedule or quartz will take care of this. Please reply.
@swildermuth8 ай бұрын
Look at quartz's durable jobs. Though in the case of a store proc, I might kick it off, not hold a connection the entire time.
@nirajchandrajoshi8 ай бұрын
@@swildermuth Thank you very much
@alfonsdeda89128 ай бұрын
Hi, great video! What are the advantages over hangfire?
@swildermuth8 ай бұрын
Hangfile requires data storage - there is no non-durable jobs. That's all.
@PelFox8 ай бұрын
How does it keep state if your app crashes / restarts? Can you store the jobs in a queue or database?
@swildermuth8 ай бұрын
You can configure it to store in state (look for Durable and StoreDurably)