![]() |
VOOZH | about |
dotnet add package FAkka.Akkling.Hocon --version 1.564.101.201
NuGet\Install-Package FAkka.Akkling.Hocon -Version 1.564.101.201
<PackageReference Include="FAkka.Akkling.Hocon" Version="1.564.101.201" />
<PackageVersion Include="FAkka.Akkling.Hocon" Version="1.564.101.201" />Directory.Packages.props
<PackageReference Include="FAkka.Akkling.Hocon" />Project file
paket add FAkka.Akkling.Hocon --version 1.564.101.201
#r "nuget: FAkka.Akkling.Hocon, 1.564.101.201"
#:package FAkka.Akkling.Hocon@1.564.101.201
#addin nuget:?package=FAkka.Akkling.Hocon&version=1.564.101.201Install as a Cake Addin
#tool nuget:?package=FAkka.Akkling.Hocon&version=1.564.101.201Install as a Cake Tool
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.
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
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
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 |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.564.101.201 | 129 | 4/6/2026 |
| 1.562.10.103-dgx.1 | 111 | 3/10/2026 |
| 1.557.10.101 | 436 | 12/21/2025 |
| 1.0.530.100 | 404 | 11/13/2024 |
| 1.0.530 | 149 | 11/3/2024 |
| 1.0.528 | 143 | 9/8/2024 |
| 1.0.0 | 147 | 9/2/2024 |
| 0.12.1 | 1,458 | 3/12/2023 |
| 0.12.0 | 417 | 1/20/2023 |