actor-model
Here are 530 public repositories matching this topic...
Cloud Native application framework for .NET
-
Updated
May 28, 2022 - C#
I'd like to configure stack size(and probably give threads names), afaik it's currently not possible.
A work-in-progress, open-source, multi-player city simulation game.
-
Updated
Apr 9, 2022 - Rust
primitive A
primitive B
actor Main
new create(env: Env) =>
let bad = Generic[(A | B)].get()
env.out.print(match bad
| let _: A => "D"
| let _: B => "B"
end)
interface val Default
new val create()
class Generic[T: (Default val | None val)]
let x: T = T.create()
fun get(): T =>
x
https://playground.ponylang.io/?gist=60bfbb2f304c0ad519cf0d68dc9
Port of Akka actors for .NET
-
Updated
May 28, 2022 - C#
Proto Actor - Ultra fast distributed actors for Go, C# and Java/Kotlin
-
Updated
May 28, 2022 - Go
coobjc provides coroutine support for Objective-C and Swift. We added await method、generator and actor model like C#、Javascript and Kotlin. For convenience, we added coroutine categories for some Foundation and UIKit API in cokit framework like NSFileManager, JSON, NSData, UIImage etc. We also add tuple support in coobjc.
-
Updated
Sep 26, 2021 - Objective-C
An Open Source Implementation of the Actor Model in C++
-
Updated
May 27, 2022 - C++
Orbit - Virtual actor framework for building distributed systems
-
Updated
Jun 15, 2021 - Kotlin
an actor based Framework for creating microservices using technologies and design patterns of Erlang/OTP in Golang
-
Updated
May 25, 2022 - Go
A model checker for implementing distributed systems.
-
Updated
May 23, 2022 - Rust
-
Updated
May 27, 2022 - Python
nact ⇒ node.js + actors ⇒ your services have never been so µ
-
Updated
Apr 9, 2022 - TypeScript
Self-paced training course to learn Akka.NET fundamentals from scratch
-
Updated
Apr 1, 2022 - C#
Easily build efficient, highly concurrent and resilient applications. An Actor Framework for Rust.
-
Updated
Nov 24, 2021 - Rust
Currently, WebSocket is working for client/server side. However, the browsers do not allow to create tcp connections direclty (which is the current implementation based). Instead, the web-sys must be used.
- Use a different WebSocket implementation if the target is
wasm. - wasm example of a client.
Minecraft server based on Orleans
-
Updated
Oct 13, 2021 - C#
A developing game server framework,based on Entity Component System(ECS).
-
Updated
Oct 14, 2021 - Go
QP/C real-time embedded framework/RTOS for embedded systems based on active objects (actors) and hierarchical state machines
-
Updated
May 9, 2022 - C
Full stack application platform for building stateful microservices, streaming APIs, and real-time UIs
-
Updated
May 27, 2022 - Java
An ultra-lightweight and blazing-fast MQTT broker for IoT edge
-
Updated
May 28, 2022 - C
A Cloud at the lowest level!
-
Updated
May 14, 2022 - Erlang
With CAF 0.18, actor names must be constant strings. The active and passive partition carry their human-readable name in the variable self->state.name already.
In active_partition.cpp and passive_partition.cpp we currently have a lot of log messages using the actor name rather than the human-readable partition name. We need to change them like this:
VAST_DEBUG("{} persists pCalvin is an application environment that lets things talk to things, among other things.
-
Updated
Aug 13, 2020 - Python
An implementation of Actor, Publish-Subscribe, and CSP models in one rather small C++ framework. With performance, quality, and stability proved by years in the production.
-
Updated
May 23, 2022 - C++
Monad, Functional Programming features for Golang
-
Updated
May 26, 2022 - Go
Python Actor concurrency library
-
Updated
Feb 22, 2022 - Python
Coerce - an asynchronous (async/await) Actor runtime and cluster framework for Rust
-
Updated
May 22, 2022 - Rust
An actor framework for Go
-
Updated
Dec 25, 2018 - Go
Improve this page
Add a description, image, and links to the actor-model topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the actor-model topic, visit your repo's landing page and select "manage topics."


ActorAdapter will ignore
nullmessage with "Adapter function returned null which is not valid as an .."However, this seems not be documented. For instance, scaladoc/javadoc of
pipeToSelfcould mention it as well as any other place where adapters are used.