IRC channel logs

2024-08-28.log

back to list of logs

<fr33domlover>o/ wanting to do a little sanity check:
<fr33domlover>I'm implementing simple actor system, and on top I want to implement promises
<fr33domlover>One idea how: When I call another actor's method (let's say call it actor A), I launcher a helper actor H in my own vat, and I send A a reference to H, and A sends me the return value (thus fulfill the Promise) by calling a method of H
<fr33domlover>Does that sound right or am I not within sanity here? Curious if Goblins does things similarly (cos IIRC Goblins implements many things in terms of actors)