Adam Fraser
Adam Fraser
```scala object Example extends ZIOAppDefault { val parent = for { fiber
Okay. The location should always be captured when the fiber is forked.
Not sure it makes sense to expose these as opposed to runtime flags like enabling work stealing as they are extremely low level and might change in future optimizations to...
@domdorn Will add something for the first one. For the second you can check the `size` of each subscriber.
Actually that is not a binary compatible change but you can update a `Ref` when a subscriber subscribes or unsubscribes if you want to track that information. ```scala ZIO.acquireRelease(ref.update(_ +...
We will provide a way to view metrics for queues and hubs in the future, though we may do it in a somewhat different way.
I'm generally not a fan of these "micro libraries" but we could look at this.
Will take a look.
Thanks for reporting! If you can create a minimized reproducer can definitely take a look!
@domdorn I think you may want to look to something like ZIO Actors for this. I think ZIO itself makes it relatively easy to do this. I would generally define...