AkkaNetApiAdapter 1.1.32

There is a newer version of this package available.
See the version list below for details.
dotnet add package AkkaNetApiAdapter --version 1.1.32
                    
NuGet\Install-Package AkkaNetApiAdapter -Version 1.1.32
                    
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="AkkaNetApiAdapter" Version="1.1.32" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AkkaNetApiAdapter" Version="1.1.32" />
                    
Directory.Packages.props
<PackageReference Include="AkkaNetApiAdapter" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add AkkaNetApiAdapter --version 1.1.32
                    
#r "nuget: AkkaNetApiAdapter, 1.1.32"
                    
#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.
#addin nuget:?package=AkkaNetApiAdapter&version=1.1.32
                    
Install AkkaNetApiAdapter as a Cake Addin
#tool nuget:?package=AkkaNetApiAdapter&version=1.1.32
                    
Install AkkaNetApiAdapter as a Cake Tool

AkkaNetApiAdapter

AkkaNetApiAdapter is a lightweight and efficient SDK designed to simplify the integration of Akka.NET actor systems into .NET API applications. It provides a seamless way to incorporate the actor model, enabling the creation of scalable, fault-tolerant, and distributed systems with ease.


Table of Contents


Features

  • Seamless Integration: Provides tools for easily integrating Akka.NET with .NET APIs.
  • Dependency Injection Support: Integrates with .NET Core's DI system for actor registration and management.
  • Scalability and Resilience: Leverages Akka.NET's actor model for distributed and fault-tolerant systems.
  • Customizable Lifecycle Management: Manage actor lifecycles, supervision strategies, and routing configurations.
  • Comprehensive Documentation and Examples: Includes ready-to-use examples for faster onboarding.

Installation

Install the NuGet package via the .NET CLI:

dotnet add package AkkaNetApiAdapter

<hr>

Getting Started

In your Program.cs or StartUp.cs file, register the AkkaNetApiAdapter within the service container:

1. Register the Actor System

  var builder = WebApplication.CreateBuilder(args);
{
    var services = builder.Services;
    var config = builder.Configuration;
    
    // Register the Actor System
    //To add your actors to the actor system, pass them as props to the AddActorSystem method
     services.AddActorSystem(c => config.GetSection(nameof(ActorConfig)).Bind(c), typeof(MyActor));
    
}

2. Create extension method for adding actor system to WebApplicationBuilder

  public static class WebApplicationExtensions{
    public static void UseActorSystem(this WebApplication app)
    {
        var actorSys = app.Services.GetRequiredService<ActorSystem>();

        _ = actorSys ?? throw new ArgumentNullException(nameof(actorSys));
    }
  }

3. Register the Actor System in WebApplicationBuilder

  var app = builder.Build();
{
    // Register the Actor System
    app.UseActorSystem();
}

<hr>

Create an Actor

Define an actor class inheriting from BaseActor

public class MyActor:BaseActor{
    
     public MyActor(){
           ReceiveAsync<ProcessMessage>(DoProcessMessage);
       }
    //method to handle messages
    private async Task DoProcessMessage(ProcessMessage message)
    {
        //do something with the message
    }
}

Use the Actor in Your API Project

   public async Task MyMethod(){
       var myMessage=new {};
       
       //Get the Actor by name and send the message
       TopLevelActors.GetActor<MyActor>(nameof(MyActor)).Tell(myMessage);
    }
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on AkkaNetApiAdapter:

Package Downloads
KafkaConsumerTemplateV8

A .NET project template for Kafka consumer applications.

KafkaConsumerMongoDbTemplateV8

A .NET project template for quickly setting up Kafka consumer applications. This template simplifies the process of building robust Kafka consumer services with essential configurations and features like message consumption, dependency injection, and graceful shutdown handling. Perfect for developers working with Apache Kafka in .NET.

DotNetApiMongoDbTemplateV8

DotnetApiMongoDbTemplateV8 is a comprehensive, ready-to-use template for building modern .NET APIs with MongoDB. Designed to simplify and accelerate API development, this template integrates essential tools and follows best practices, making it ideal for developers looking for a solid foundation for their projects.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.42 274 1/25/2025
1.1.41 97 1/25/2025
1.1.39 89 1/25/2025
1.1.38 88 1/25/2025
1.1.37 93 1/25/2025
1.1.36 89 1/25/2025
1.1.35 60 1/13/2025
1.1.34 49 1/13/2025
1.1.33 51 1/13/2025
1.1.32 82 1/5/2025
1.1.31 101 1/1/2025
1.1.4 88 1/25/2025
1.1.3 129 1/1/2025
1.1.2 133 1/1/2025
1.1.1 127 1/1/2025
1.1.0 129 1/1/2025
1.0.0 126 1/1/2025

Version 1.1.32 - Initial Release