Is there a plan to add “dynamic proc creation” to core.async.flow?
I have a proc “Rooms” that coordinates the activities within chat rooms. If I could generate a proc (or a sort of child-proc) per room dynamically, one room’s state would be isolated. This would allow handling a rooms messages independently. If all rooms access the “Rooms” state, one active room could block the others. All rooms are depending on the same proc’s :in and :out channels.
Have I got a thing for you