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
Erlang supervisors have different restart strategies: https://www.erlang.org/doc/system/sup_princ
Earl supervisors only support the one_for_one strategy, where the supervisor will restart any failed child agent and nothing else.
one_for_one
The one_for_all and rest_for_one strategies are also interesting. The stop from right to left and restart from left-to-right is also interesting.
one_for_all
rest_for_one
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Erlang supervisors have different restart strategies:
https://www.erlang.org/doc/system/sup_princ
Earl supervisors only support the
one_for_one
strategy, where the supervisor will restart any failed child agent and nothing else.The
one_for_all
andrest_for_one
strategies are also interesting. The stop from right to left and restart from left-to-right is also interesting.The text was updated successfully, but these errors were encountered: