![]() |
VOOZH | about |
dotnet add package FAkka.Akka.FSharp --version 1.5.64.1
NuGet\Install-Package FAkka.Akka.FSharp -Version 1.5.64.1
<PackageReference Include="FAkka.Akka.FSharp" Version="1.5.64.1" />
<PackageVersion Include="FAkka.Akka.FSharp" Version="1.5.64.1" />Directory.Packages.props
<PackageReference Include="FAkka.Akka.FSharp" />Project file
paket add FAkka.Akka.FSharp --version 1.5.64.1
#r "nuget: FAkka.Akka.FSharp, 1.5.64.1"
#:package FAkka.Akka.FSharp@1.5.64.1
#addin nuget:?package=FAkka.Akka.FSharp&version=1.5.64.1Install as a Cake Addin
#tool nuget:?package=FAkka.Akka.FSharp&version=1.5.64.1Install 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 5 NuGet packages that depend on FAkka.Akka.FSharp:
| Package | Downloads |
|---|---|
|
FAkka.Shared
Package Description |
|
|
FAkka.Server
Package Description |
|
|
FAkka.Akka.Persistence.FSharp
Package Description |
|
|
FAkka.Seed.7.0
Package Description |
|
|
FAkka.Seed.9.0
Package Description |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.5.64.1 | 424 | 4/6/2026 |
| 1.5.64 | 116 | 4/6/2026 |
| 1.5.62-dgx | 148 | 3/14/2026 |
| 1.5.57 | 475 | 12/21/2025 |
| 1.5.30.2 | 397 | 11/13/2024 |
| 1.5.30.1 | 178 | 11/7/2024 |
| 1.5.30 | 148 | 11/3/2024 |
| 1.5.28 | 157 | 9/8/2024 |
| 1.5.28-beta1 | 141 | 9/3/2024 |
| 1.5.0 | 976 | 4/23/2023 |
| 1.0.3 | 695 | 3/25/2023 |
| 1.0.2 | 645 | 3/12/2023 |
| 1.0.1 | 388 | 3/10/2023 |
| 1.0.0 | 473 | 1/21/2023 |