Sean Lawlor
Sean Lawlor
This was tested by using this PR, but I can confirm docker login is successful and it does NOT publish on PRs but should run weekly to re-publish an updated...
Please use this thread for sharing proxies with the community. Our issues are generally for problems with the proxy code or building/executing it. This is a single place where proxy...
We have a `gen_server` equivalent (basic actor), now we can expand on that * [x] `factory` for a pool of workers local to a node #46 , #47 Other possible...
`ractor` could potentially expose a `ChildSpec` trait that inherits `Clone` and exposes a `crate_child` function that returns an instance of the child. This way a supervisor could pass an instance...
Following from Erlang, we want to support distributed nodes https://www.erlang.org/doc/reference_manual/distributed.html We need - [x] Tcp connections and transmission - [x] Encrypted socket communications #55 - [x] [Distribution handshake](https://www.erlang.org/doc/apps/erts/erl_dist_protocol.html#distribution-handshake) - [...
Our process groups don't have "scopes" like the Erlang ones (https://www.erlang.org/doc/man/pg.html) As we move towards distributed actors, scopes will probably help limit which actors are being referenced in process groups...
We have 0 log messages in the actor flow, and definitely need some. Let's standardize on the `log` crate.
We should be able to setup an "output" port kind of publish-subscribe model so actors can "emit" messages without knowing exactly who is listening. This would require actors to emit...
Hello! We have successfully used your crate to connect a Rust-node to an Erlang cluster, however we can't seem to build a regular (non-hidden) C-equivalent node. It looks like we're...
With adding the `limited_key_history` call in `directory.rs` we now need the ability to select a series of user values given a minimum epoch (`start_epoch`). This should be a new call...