-
Notifications
You must be signed in to change notification settings - Fork 196
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
Turn resource adaptors into alias templates #1457
Comments
I'm confused by the |
The issue is how to transition something that is a template to something that is not. I am all ears on how to switch names |
I don't have any ideas but answers to my questions might give me some. :) I still have the same questions I wrote above. |
I think there's an easier way to make this change (though it will take at least 2 releases).
|
My current plan is to:
|
Currently all resource adaptors are templated on their upstream resource.
Transitioning to
resource_ref
this is superfluous, as we do not need to know the upstream type anymore.However, we cannot simply remove the template argument, as that would break user code. So we need to first introduce an indirection using an alias:
The text was updated successfully, but these errors were encountered: