Adam Fraser
Adam Fraser
@robmwalsh In `evaluateMessageWhileSuspended` we check whether `RuntimeFlag.OpLog` is enabled and if so call `log`. 😃 Agree we need to figure out what operations we want to log though I think...
Actually @gciuloaica is already on this!
One idea: ```scala object Example { // executable middleware preserves existing functionality when needed trait Middleware[-R, +E, +AIn, -BIn, -AOut, +BOut] { def apply[R1 : E](http: Http[R1, E1, AIn, BIn]):...
@frekw I think you can do this with tags.
@gregor-rayman I think you want to take a look at ZIO Flow for that.
I spent some more time on this and I believe the below encoding inspired by @Odomontois's `tofu-optics` library would allow us to have one way to compose all optics, assuming...
@sideeffffect I am maintaining ZIO 2 completely separately from ZIO 1. I would encourage you to do new development exclusively on the ZIO 2 branch. I know you have preferred...
@kubukoz I think this should have the behavior you want on ZIO 2 since the seed is set with a random long from the live `Random` service instead of the...
This is expected behavior. `raceFirst` does not purport to return the result of both fibers but only the first one to complete and the operator in fact assumes that the...