FeatureSlice 1.0.5
Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package FeatureSlice --version 1.0.5
NuGet\Install-Package FeatureSlice -Version 1.0.5
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="FeatureSlice" Version="1.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FeatureSlice --version 1.0.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: FeatureSlice, 1.0.5"
#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 FeatureSlice as a Cake Addin #addin nuget:?package=FeatureSlice&version=1.0.5 // Install FeatureSlice as a Cake Tool #tool nuget:?package=FeatureSlice&version=1.0.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
FeatureSlice
FeatureSlice is an library aiming to help working with Vertical/Feature Slice Architecture.
FeatureSlices contain a Handle method that can be invoked externaly by a delegate registered in DI. The method can can be extended so it can be invoked by:
- Http Endpoint
- Queue/Topic
- Background Job
- CLI
Those elements can be setup using two types of API:
Samples
Endpoint
public sealed class ExampleHandler :
FeatureSlice<ExampleHandler, ExampleHandler.Request, ExampleHandler.Response>
{
public sealed record Request(string Value0, int Value1, int Value2);
public sealed record Response(int Value0, int Value1, string Value2);
public override ISetup Setup => Handle(static async (Request request, Dependency1 dep1, Dependency2 dep2) =>
{
Console.WriteLine($"Handler: {request}");
await Task.CompletedTask;
return new Response(request.Value2, request.Value1, request.Value0);
})
.MapPost("handler", opt => opt
.Request
(
From.Route.Int("id"),
From.Query.Int("qu"),
From.Body.Json<Request>(),
(id, qu, body) => new Request(body.Value0, qu, id)
)
.DefaultResponse()
.WithTags("Handler"))
}
CronJob
public sealed class ExampleHandler :
FeatureSlice<ExampleHandler, ExampleHandler.Request, ExampleHandler.Response>
{
public sealed record Request(string Value0, int Value1, int Value2);
public sealed record Response(int Value0, int Value1, string Value2);
public override ISetup Setup => Handle(static async (Request request, Dependency1 dep1, Dependency2 dep2) =>
{
Console.WriteLine($"Handler: {request}");
await Task.CompletedTask;
return new Response(request.Value2, request.Value1, request.Value0);
})
.MapCronJob
(
"5 4 * * *",
new Request("testjob", 1, 2)
);
}
Consumer
public sealed class ExampleConsumer :
FeatureSlice<ExampleConsumer, ExampleConsumer.Request>
{
public sealed record Request(string Value0, int Value1);
public override ISetup Setup => Handle(static async (Request request, ExampleHandler.Dispatch dep2) =>
{
Console.WriteLine($"Consumer: {request}");
await dep2(new ExampleHandler.Request("testFromConsumer", 0, 1));
await Task.CompletedTask;
return Result.Success;
})
.AsConsumer("ConsumerName");
}
CLI
public sealed class ExampleHandler :
FeatureSlice<ExampleHandler, ExampleHandler.Request, ExampleHandler.Response>
{
public sealed record Request(string Value0, int Value1, int Value2);
public sealed record Response(int Value0, int Value1, string Value2);
public override ISetup Setup => Handle(static async (Request request, Dependency1 dep1, Dependency2 dep2) =>
{
Console.WriteLine($"Handler: {request}");
await Task.CompletedTask;
return new Response(request.Value2, request.Value1, request.Value0);
})
.MapCli
(
Arg.Cmd("validate"),
Arg.Opt("option1", "o1"),
Arg.Opt("option2", "o2"),
(arg1, arg2) => new Request(arg1, int.Parse(arg2), 5)
);
}
Combination of all of those
public sealed class ExampleConsumer :
FeatureSlice<ExampleConsumer, ExampleConsumer.Request>
{
public sealed record Request(string Value0, int Value1);
public override ISetup Setup => Handle(static async (Request request, ExampleHandler.Dispatch dep2) =>
{
Console.WriteLine($"Consumer: {request}");
await dep2(new ExampleHandler.Request("testFromConsumer", 0, 1));
await Task.CompletedTask;
return Result.Success;
})
.MapPost("consumer", opt => opt
.Request
(
From.Route.Int("id"),
From.Body.Json<Request>(),
(id, body) => new Request(body.Value0, id)
)
.DefaultResponse()
.WithTags("Consumer"))
.AsConsumer("ConsumerName")
.MapCronJob
(
"5 4 * * *",
new Request("testjob", 1, 2)
)
.MapCli
(
Arg.Cmd("validate"),
Arg.Opt("option1", "o1"),
Arg.Opt("option2", "o2"),
(arg1, arg2) => new Request(arg1, int.Parse(arg2), 5)
);
}
FeatureSlices Expose Dispatch methods which allow them to be called from dependencies
public static void Use
(
ExampleConsumer.Dispatch consumer,
ExampleHandler.Dispatch handler
)
{
consumer(new ExampleConsumer.Request());
handler(new ExampleHandler.Request());
}
FeatureSlices Expose Register for DI registration
public static void Register(IServiceCollection services)
{
ExampleConsumer.Register(services);
ExampleHandler.Register(services);
}
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
- Definit.Configuration (>= 1.0.12)
- Definit.Dependencies (>= 1.0.12)
- Definit.Endpoint (>= 1.0.12)
- Definit.Result (>= 1.0.12)
- Definit.Utils (>= 1.0.12)
- Microsoft.AspNetCore.OpenApi (>= 8.0.0)
- Microsoft.AspNetCore.Routing (>= 2.2.2)
- Microsoft.FeatureManagement.AspNetCore (>= 3.1.1)
- Momolith.Modules (>= 1.0.0)
- NCronTab (>= 3.3.3)
- Swashbuckle.AspNetCore (>= 6.6.2)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on FeatureSlice:
Package | Downloads |
---|---|
FeatureSlice.FluentServiceBus
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.