You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Motivation:
Swift 6 has a `Mutex` which we can use in place of `LockedValueBox` or
`NIOLockedValueBox` in a bunch of places.
Modifications:
- Use `Mutex` where possible
- This causes a number of other changes too as `Mutex` doesn't allocate:
the allocations move to the type holding it instead. This makes sense as
the objects which were previously structs didn't have value semantics.
Result:
Fewer uses of our own lock, no uses of NIOs lock
0 commit comments