FAkka.Akkling.Hocon 1.562.10.103-dgx.1

This is a prerelease version of FAkka.Akkling.Hocon.
dotnet add package FAkka.Akkling.Hocon --version 1.562.10.103-dgx.1
                    
NuGet\Install-Package FAkka.Akkling.Hocon -Version 1.562.10.103-dgx.1
                    
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="FAkka.Akkling.Hocon" Version="1.562.10.103-dgx.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FAkka.Akkling.Hocon" Version="1.562.10.103-dgx.1" />
                    
Directory.Packages.props
<PackageReference Include="FAkka.Akkling.Hocon" />
                    
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 FAkka.Akkling.Hocon --version 1.562.10.103-dgx.1
                    
#r "nuget: FAkka.Akkling.Hocon, 1.562.10.103-dgx.1"
                    
#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.
#:package FAkka.Akkling.Hocon@1.562.10.103-dgx.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=FAkka.Akkling.Hocon&version=1.562.10.103-dgx.1&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=FAkka.Akkling.Hocon&version=1.562.10.103-dgx.1&prerelease
                    
Install as a Cake Tool

Akkling

This is the experimental fork of Akka.FSharp library, introducing new features such as typed actor refs, and also simplifying existing Akka.FSharp API. The main reason for splitting from official API is to be able to introduce new (also experimental), but possibly breaking changes outside existing Akka release cycle.

Read wiki pages for more info.

Get's started

For more examples check examples section.

Obligatory hello world example:

open Akkling

use system = System.create "my-system" <| Configuration.defaultConfig()
let aref = spawnAnonymous system <| props(actorOf (fun m -> printfn "%s" m |> ignored))

aref <! "hello world"
aref <! 1 // ERROR: we have statically typed actors here

Another example using stateful actors:

open Akkling

use system = System.create "my-system" <| Configuration.defaultConfig()

type Message =
    | Hi
    | Greet of string

let rec greeter lastKnown = function
    | Hi -> printfn "Who sent Hi? %s?" lastKnown |> ignored
    | Greet(who) ->
        printfn "%s sends greetings" who
        become (greeter who)

let aref = spawn system "greeter" <| props(actorOf (greeter "Unknown"))

aref <! Greet "Tom"
aref <! Greet "Jane"
aref <! Hi

Maintainer(s)

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on FAkka.Akkling.Hocon:

Package Downloads
FAkka.Server

Package Description

FAkka.Server.Linux

Package Description

FAkka.Shared.Linux

Package Description

FAkka.FAkka.Server

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.562.10.103-dgx.1 73 3/10/2026
1.557.10.101 415 12/21/2025
1.0.530.100 384 11/13/2024
1.0.530 134 11/3/2024
1.0.528 125 9/8/2024
1.0.0 126 9/2/2024
0.12.1 1,437 3/12/2023
0.12.0 401 1/20/2023