README.md
# ExWaiter
[![CI Status](https://github.com/baldwindavid/ex_waiter/actions/workflows/build-and-test.yml/badge.svg)](https://github.com/baldwindavid/ex_waiter/actions/workflows/build-and-test.yml)
Handy functions for polling and receiving.
- Polling: `poll/1` periodically checks that a given
condition has been met.
- Receiving: `receive_next/2` returns the next message/s
from the mailbox within a timeout.
Hexdocs found at
[https://hexdocs.pm/ex_waiter](https://hexdocs.pm/ex_waiter).
## Installation
Add the latest release to your `mix.exs` file:
```elixir
defp deps do
[
{:ex_waiter, "~> 1.0.1"}
]
end
```
Then run `mix deps.get` in your shell to fetch the dependencies.
## Warning
The API for this library has not yet fully stabilized.
## Thanks
Thanks to [@itsgreggreg](https://github.com/itsgreggreg) and [@s3cur3](https://github.com/s3cur3), for providing helpful feedback.