Skip to content
#

actor-model

Here are 528 public repositories matching this topic...

akka
ponyc
jasoncarr0
jasoncarr0 commented Apr 14, 2022
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

help wanted bug good first issue

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
lemunozm
lemunozm commented Jun 21, 2021

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.
enhancement good first issue
vast
lava
lava commented Oct 21, 2021

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
refactoring good first issue

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++

Improve this page

Add a description, image, and links to the actor-model topic page so that developers can more easily learn about it.

Curate this topic

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."

Learn more