connection
connection copied to clipboard
Connection behaviour for connection processes
The 18.04 runner is being deprecated. It might be why https://github.com/elixir-ecto/connection/pull/18 has failed CI jobs with this message: >This request was automatically failed because there were no enabled runners online...
Closes #11
In GenServer since OTP21 or so, there's a handle_continue callback for allowing asynchronous startup without accepting external messages until a required step or two are completed. Connection is meant to...
I think it's necessary because `use GenServer` implements `child_spec/1` and so should `Connection` do. If you agree, I can implement the PR
We've updated the `README.md` to recommend `gen_statem` as an alternative to this `Connection` module, but users visiting the module via the [Online Documentation](https://hexdocs.pm/connection/Connection.html) may miss that note, so it may...