Tx.Core.GenericStrategy
2.1.0
dotnet add package Tx.Core.GenericStrategy --version 2.1.0
NuGet\Install-Package Tx.Core.GenericStrategy -Version 2.1.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Tx.Core.GenericStrategy" Version="2.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Tx.Core.GenericStrategy --version 2.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Tx.Core.GenericStrategy, 2.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Tx.Core.GenericStrategy as a Cake Addin #addin nuget:?package=Tx.Core.GenericStrategy&version=2.1.0 // Install Tx.Core.GenericStrategy as a Cake Tool #tool nuget:?package=Tx.Core.GenericStrategy&version=2.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Thanks to JEREMY DAVIS for this articule: https://jermdavis.wordpress.com/2016/10/03/an-alternative-approach-to-pipelines/
Exmaple:
- Define some concrete class implementing the IGenericStrategyProcessor<>
public class ConcreteClassOne : IGenericStrategyProcessor<string, int>
{
public string Name { get; private set; } = "Some unique name";
public string Process(int request)
{
Console.WriteLine($"Processing {GetType().Name}");
return "OK";
}
}
public class ConcreteClassTwo : IGenericStrategyProcessor<string, int>
{
public string Name { get; private set; } = "Some unique name";
public string Process(int request)
{
Console.WriteLine($"Processing {GetType().Name}");
return "OK";
}
}
- Register multiple instance in the Container
serviceCollection.AddTransient<IGenericStrategyService<string, int>, GenericStrategyService<string, int>>();
serviceCollection.AddSingleton<IGenericStrategyResolver<string, int>, GenericStrategyResolver<string, int>>();
Assembly.GetExecutingAssembly().GetTypesAssignableFrom<IGenericStrategyProcessor<string, int>>().ForEach((t) =>
{
serviceCollection.AddTransient(typeof(IGenericStrategyProcessor<string, int>), t);
});
*GetTypesAssignableFrom is from the Tx.Core.Extentions nuget package
- Use the IGenericStrategyService in your class
public class App
{
private IGenericStrategyService<string, int> _genericStrategyService;
public App(IGenericStrategyService<string, int> genericStrategyService)
{
_genericStrategyService = genericStrategyService;
}
public Task Handle(DataModel request, CancellationToken cancellationToken)
{
var result = _genericStrategyService.Execute("Some unique name", request);
return Task.CompletedTask;
}
}
}
*DataModel is some model you base on
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.