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
Enable lazier initialization of Dispatchers.IO (#4166)
Currently, any reference to Dispatchers class, including many calls
to Dispatchers.Default, force Dispatchers.IO to be initialized. This
incurs several system property reads and other expensive operations
even if Dispatchers.IO is never used.
This PR changes this by delaying Dispatchers.IO initialization
until it's first accessed.
0 commit comments