dplyukhin / UIGC

A garbage collector for Akka actors!
Other
4 stars 2 forks source link

Automatically create references #50

Open dplyukhin opened 1 year ago

dplyukhin commented 1 year ago

Currently, actors need to manually create new references for each other using context.createRef. We should be able to make UIGC search each message for references and surgically replace them with new references.

Alternatively, maybe somebody clever could figure out how to make it safe for actors on a single machine to share refobs...

dplyukhin commented 1 year ago

See also #49

dplyukhin commented 8 months ago

Additional complication: A lot of programs involve passing ActorRefs as arguments for constructors. We'll need to intercept these constructor arguments and transform them.