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
#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

Thanks to JEREMY DAVIS for this articule: https://jermdavis.wordpress.com/2016/10/03/an-alternative-approach-to-pipelines/

Exmaple:

  1. 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";
        }
    }

  1. 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

  1. 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 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.

Version Downloads Last updated
2.1.0 91 1/23/2024
2.0.0 296 11/30/2022
1.0.1 289 11/25/2022
1.0.0 371 11/1/2021