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

STYLE: Replace thread_local variables with m_TensorStoreData data member #71

Commits on Aug 27, 2024

  1. STYLE: Replace thread_local variables with m_TensorStoreData data member

    It appears preferable that multiple OMEZarrNGFFImageIO instances do not share
    their TensorStore context and store. With this commit, each OMEZarrNGFFImageIO
    instance will have its own context and store, stored in its `m_TensorStoreData`
    data member.
    
    The `m_TensorStoreData` data member hides the TensorStore data from the
    interface, as it is a pointer to a forward-declared struct, similar to the
    "Pimpl" idiom.
    N-Dekker committed Aug 27, 2024
    Configuration menu
    Copy the full SHA
    0b9ca69 View commit details
    Browse the repository at this point in the history