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
The reader that converts a Flow into a ByteArray has unnecessary synchronization in onNext. According to the contract defined in Flow, calls to onNext are never executed concurrently. Note that OriginThreadPublisher uses a lock to guarantee this condition.
The text was updated successfully, but these errors were encountered:
The reader that converts a
Flow
into aByteArray
has unnecessary synchronization inonNext
. According to the contract defined inFlow
, calls toonNext
are never executed concurrently. Note thatOriginThreadPublisher
uses a lock to guarantee this condition.The text was updated successfully, but these errors were encountered: