actor-model
Here are 528 public repositories matching this topic...
-
Updated
May 20, 2022 - C#
I'd like to configure stack size(and probably give threads names), afaik it's currently not possible.
-
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
-
Updated
May 20, 2022 - C#
-
Updated
Sep 26, 2021 - Objective-C
-
Updated
May 20, 2022 - C++
-
Updated
Jun 15, 2021 - Kotlin
-
Updated
May 18, 2022 - Go
-
Updated
May 19, 2022 - Rust
-
Updated
Apr 28, 2022 - Python
-
Updated
Apr 9, 2022 - TypeScript
-
Updated
Apr 1, 2022 - C#
-
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.
-
Updated
Oct 13, 2021 - C#
-
Updated
Oct 14, 2021 - Go
-
Updated
May 9, 2022 - C
-
Updated
Mar 17, 2022 - Java
-
Updated
May 21, 2022 - C
-
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 p
-
Updated
Aug 13, 2020 - Python
-
Updated
May 23, 2022 - C++
-
Updated
May 19, 2022 - Go
-
Updated
Feb 22, 2022 - Python
-
Updated
May 22, 2022 - Rust
-
Updated
Dec 25, 2018 - Go
-
Updated
May 23, 2022 - TypeScript
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
null
message with "Adapter function returned null which is not valid as an .."However, this seems not be documented. For instance, scaladoc/javadoc of
pipeToSelf
could mention it as well as any other place where adapters are used.