Class ServiceCollectionExtensions
Provides extension methods for IServiceCollection to facilitate the registration of hosted services with specific configurations.
Inherited Members
Namespace: Coree.NETStandard.HostedServicesCollection
Assembly: Coree.NETStandard.dll
Syntax
public static class ServiceCollectionExtensions
Methods
| Edit this page View SourceAddHostedServicesCollection<T, K>(IServiceCollection, IConfiguration, string)
Registers a collection of hosted services of type T
with their configurations loaded from a specified section of the application's IConfiguration.
Declaration
public static IServiceCollection AddHostedServicesCollection<T, K>(this IServiceCollection services, IConfiguration configuration, string sectionName) where T : class, IHostedService where K : class, new()
Parameters
Type | Name | Description |
---|---|---|
IServiceCollection | services | The IServiceCollection to add the services to. |
IConfiguration | configuration | The application's configuration. |
string | sectionName | The name of the configuration section from which to load the configurations. |
Returns
Type | Description |
---|---|
IServiceCollection | The original IServiceCollection instance with the hosted services registered. |
Type Parameters
Name | Description |
---|---|
T | The type of the hosted service to register. Must implement IHostedService. |
K | The configuration type for the hosted service. Must be a class with a parameterless constructor. |
Remarks
Configurations are bound to new instances of K
and each hosted service
instance is registered with a singleton service descriptor.
//appsettings.json
"ServiceConfigurations": {
"FooService": {
"Name": "Service1"
},
"BarService": {
"Name": "Service2"
}
}
services.AddHostedServicesCollection<MyBackgroundSrv, MyBackgroundSrvConfig>(context.Configuration, "ServiceConfigurations");
public class MyBackgroundSrvConfig
{
public Guid Guid { get; } = Guid.NewGuid(); public string? Name { get; set; }
}
public class MyBackgroundSrv : BackgroundService
{
private readonly MyBackgroundSrvConfig options; private readonly ILogger<MyBackgroundService> logger;
public MyBackgroundSrv(ILogger<MyBackgroundService> logger, IHostedServicesCollectionConfig<MyBackgroundSrvConfig> options)
{
this.logger = logger; this.options = options.FetchNextConfig();
}
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
{
while (!stoppingToken.IsCancellationRequested)
{
try {
logger.LogInformation("MyBackgroundSrv running: {Name} with {guid} at {time}", options.Name, options.Guid.ToString(), DateTimeOffset.Now);
await Task.Delay(5000, stoppingToken);
}
catch (TaskCanceledException)
{ logger.LogInformation("MyBackgroundSrv cancel: {Name} with {guid} at {time}", options.Name, options.Guid.ToString(), DateTimeOffset.Now); }
}
}
}
AddHostedServicesCollection<T, K>(IServiceCollection, List<K>)
Registers a collection of hosted services of type T
with their configurations specified in a list of K
.
Declaration
public static IServiceCollection AddHostedServicesCollection<T, K>(this IServiceCollection services, List<K> values) where T : class, IHostedService where K : class, new()
Parameters
Type | Name | Description |
---|---|---|
IServiceCollection | services | The IServiceCollection to add the services to. |
List<K> | values | A list of configuration instances for the hosted services. |
Returns
Type | Description |
---|---|
IServiceCollection | The original IServiceCollection instance with the hosted services registered. |
Type Parameters
Name | Description |
---|---|
T | The type of the hosted service to register. Must implement IHostedService. |
K | The configuration type for the hosted service. Must be a class with a parameterless constructor. |
Remarks
services.AddHostedServicesCollection<MyBackgroundSrv, MyBackgroundSrvConfig>(new List<MyBackgroundSrvConfig>() {
new() { Name = "Service1"},
new() { Name = "Service2" }
});
public class MyBackgroundSrvConfig
{
public Guid Guid { get; } = Guid.NewGuid();
public string? Name { get; set; }
}
public class MyBackgroundSrv : BackgroundService
{
private readonly MyBackgroundSrvConfig options;
private readonly ILogger<MyBackgroundService> logger;
public MyBackgroundSrv(ILogger<MyBackgroundService> logger, IHostedServicesCollectionConfig<MyBackgroundSrvConfig> options)
{
this.logger = logger; this.options = options.FetchNextConfig();
}
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
{
while (!stoppingToken.IsCancellationRequested)
{
try
{
logger.LogInformation("MyBackgroundSrv running: {Name} with {guid} at {time}", options.Name, options.Guid.ToString(), DateTimeOffset.Now);
await Task.Delay(5000, stoppingToken);
}
catch (TaskCanceledException)
{
logger.LogInformation("MyBackgroundSrv cancel: {Name} with {guid} at {time}", options.Name, options.Guid.ToString(), DateTimeOffset.Now);
}
}
}
}
AddHostedServicesCollection<T, K>(IServiceCollection, K[])
Registers a collection of hosted services of type T
with their configurations specified in an array of K
.
Declaration
public static IServiceCollection AddHostedServicesCollection<T, K>(this IServiceCollection services, K[] values) where T : class, IHostedService where K : class, new()
Parameters
Type | Name | Description |
---|---|---|
IServiceCollection | services | The IServiceCollection to add the services to. |
K[] | values | An array of configuration instances for the hosted services. |
Returns
Type | Description |
---|---|
IServiceCollection | The original IServiceCollection instance with the hosted services registered. |
Type Parameters
Name | Description |
---|---|
T | The type of the hosted service to register. Must implement IHostedService. |
K | The configuration type for the hosted service. Must be a class with a parameterless constructor. |
Remarks
Each hosted service instance is registered with a singleton service descriptor.
services.AddHostedServicesCollection<MyBackgroundSrv, MyBackgroundSrvConfig>(new MyBackgroundSrvConfig[] {
new() { Name = "Service1"},
new() { Name = "Service2" }
});
public class MyBackgroundSrvConfig
{
public Guid Guid { get; } = Guid.NewGuid();
public string? Name { get; set; }
}
public class MyBackgroundSrv : BackgroundService
{
private readonly MyBackgroundSrvConfig options;
private readonly ILogger<MyBackgroundService> logger;
public MyBackgroundSrv(ILogger<MyBackgroundService> logger, IHostedServicesCollectionConfig<MyBackgroundSrvConfig> options)
{
this.logger = logger; this.options = options.FetchNextConfig();
}
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
{
while (!stoppingToken.IsCancellationRequested)
{
try
{
logger.LogInformation("MyBackgroundSrv running: {Name} with {guid} at {time}", options.Name, options.Guid.ToString(), DateTimeOffset.Now);
await Task.Delay(5000, stoppingToken);
}
catch (TaskCanceledException)
{
logger.LogInformation("MyBackgroundSrv cancel: {Name} with {guid} at {time}", options.Name, options.Guid.ToString(), DateTimeOffset.Now);
}
}
}
}