FAkka.Akka.FSharp
1.5.62-dgx
dotnet add package FAkka.Akka.FSharp --version 1.5.62-dgx
NuGet\Install-Package FAkka.Akka.FSharp -Version 1.5.62-dgx
<PackageReference Include="FAkka.Akka.FSharp" Version="1.5.62-dgx" />
<PackageVersion Include="FAkka.Akka.FSharp" Version="1.5.62-dgx" />
<PackageReference Include="FAkka.Akka.FSharp" />
paket add FAkka.Akka.FSharp --version 1.5.62-dgx
#r "nuget: FAkka.Akka.FSharp, 1.5.62-dgx"
#:package FAkka.Akka.FSharp@1.5.62-dgx
#addin nuget:?package=FAkka.Akka.FSharp&version=1.5.62-dgx&prerelease
#tool nuget:?package=FAkka.Akka.FSharp&version=1.5.62-dgx&prerelease
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 | Versions 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. |
-
net10.0
- Akka (>= 1.5.62)
- FAkka.FsPickler (>= 10.0.103.2-dgx)
- FSharp.Core (>= 10.1.201)
- FSharp.Quotations.Evaluator (>= 2.1.0)
NuGet packages (6)
Showing the top 5 NuGet packages that depend on FAkka.Akka.FSharp:
| Package | Downloads |
|---|---|
|
FAkka.Shared
Package Description |
|
|
FAkka.Server
Package Description |
|
|
FAkka.Seed.7.0
Package Description |
|
|
FAkka.Akka.Persistence.FSharp
Package Description |
|
|
FAkka.FAkka.Seed.7.0
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.