HostInitActions 1.0.0
See the version list below for details.
dotnet add package HostInitActions --version 1.0.0
NuGet\Install-Package HostInitActions -Version 1.0.0
<PackageReference Include="HostInitActions" Version="1.0.0" />
paket add HostInitActions --version 1.0.0
#r "nuget: HostInitActions, 1.0.0"
// Install HostInitActions as a Cake Addin #addin nuget:?package=HostInitActions&version=1.0.0 // Install HostInitActions as a Cake Tool #tool nuget:?package=HostInitActions&version=1.0.0
Host init actions
This is a simple library for defining asynchronous operations to be performed before the application starts. Typically, it is an asynchronous initialization of singleton services registered in an IoC container. This means that there is no need to perform this initialization in a blocking manner before registering to the IoC container. HostInitActions are based on the IHostedService implementation, which means they only work in IHost implementation environments that support the IHostedService work flow. For example, within a regular WebHost in an ASP.NET Core application.
Registration of initialization actions
Registration of initialization actions is done in the ConfigureServices
method of the host builder or Startup
class.
var builder = WebApplication.CreateBuilder(args);
builder.WebHost.ConfigureServices(services =>
{
services.AddSingleton<IDatabaseService, DatabaseService>();
...
services.AddAsyncServiceInitialization()
.AddInitAction<IDatabaseService>(async (databaseService, cancellationToken) =>
{
await databaseService.CreateIfNotExists(cancellationToken);
});
});
First, it is necessary to register the initialization service using the AddAsyncServiceInitialization
method which returns a collection for registering specific init actions that will be executed before the application starts.
The AddInitAction
method expects the generic parameter of the service type that is required for initialization and also the function that executes the required init action on this service. The initialized service will be retrieved from the IoC Container and passed as a parameter to the initialization function along with the optional CancellationToken.
You can define multiple init actions and they will be executed sequentially in the order of registration.
services.AddAsyncServiceInitialization()
.AddInitAction<IDatabaseService>(async (databaseService, cancellationToken) =>
{
await databaseService.CreateIfNotExists(cancellationToken);
})
.AddInitAction<IDeviceClient>(async deviceClient =>
{
await deviceClient.Initialize();
});
It is also possible to define more services (max 5) for one init action in case you need to have better control over the execution of individual initializations.
services.AddAsyncServiceInitialization()
.AddInitAction<IDatabaseService, IDeviceClient>(async (databaseService, deviceClient) =>
{
await deviceClient.PreInitialize();
await Task.WhenAll(new []
{
deviceClient.Initialize(),
databaseService.CreateIfNotExists(),
});
await deviceClient.ConnectToDevice(port: 1223);
});
Invocation of init actions
Init actions are executed before:
- The app's request processing pipeline is configured.
- The server is started and IApplicationLifetime.ApplicationStarted is triggered.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- Microsoft.Extensions.Hosting.Abstractions (>= 6.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.