Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable lazier initialization of Dispatchers.IO #4166

Merged
merged 2 commits into from
Jul 12, 2024

Commits on Jul 3, 2024

  1. Enable lazier initialization of Dispatchers.IO

    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.
    
    Swap to a get backed val and definition in new IoDispatcher file to allow
    separate initialization in a smaller class clinit.
    Jon Boekenoogen committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    af62f99 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2024

  1. Address code review feedback.

    Jon Boekenoogen committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    9333e8d View commit details
    Browse the repository at this point in the history