We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We should allow to change the delegator at runtime as for some test scenarios this may make sense.
Application.put_env(:my_app, Delx, delegator: MyCustomDelegator)
API Suggestion:
defmodule MyModule do use Delx, otp_app: :my_app, runtime: true end
Compile time delegation (runtime: false) should be the default though as runtime delegation is significantly slower.
runtime: false
The text was updated successfully, but these errors were encountered:
tlux
No branches or pull requests
We should allow to change the delegator at runtime as for some test scenarios this may make sense.
API Suggestion:
Compile time delegation (
runtime: false
) should be the default though as runtime delegation is significantly slower.The text was updated successfully, but these errors were encountered: