JuliaActors / Actors.jl

Concurrent computing in Julia based on the Actor Model
MIT License
106 stars 11 forks source link

Improve Registry #23

Closed pbayer closed 3 years ago

pbayer commented 3 years ago

For distributed computing it is necessary to have a unique identifier for actors in a system (see issue #22). Therefore it is necessary to improve the registry with the following objectives:

  1. an actor must know its registered name,
  2. info must show the registered name,
  3. make it easier to use the Actors API with actor names.

To do

pbayer commented 3 years ago

done