Skip to content

Misc. extensions to Microsoft.Extensions.Hosting, such as ScopedHostedService.

License

Notifications You must be signed in to change notification settings

hannesbarbez/BarbezDotEu.Extensions.Hosting

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BarbezDotEu.Extensions.Hosting

Misc. extensions to Microsoft.Extensions.Hosting, such as ScopedHostedService.

ScopedHostedService

ScopedHostedService is an IHostedService implementation designed to support regular scoped execution of work using a Timer.

It may benefit from better garbage collection in some applications compared to e.g. BackgroundService which is designed for long running tasks and may enjoy less favorable garbage collection than scoped work, in some cases.