Ticker

Build Status

Timer to schedule jobs in small intervals.

Installation

The package can be installed as:

  1. Add ticker to your list of dependencies in mix.exs:
```elixir
def deps do
  [{:ticker, "~> 0.0.1"}]
end
```
  1. Ensure ticker is started before your application:
```elixir
def application do
  [applications: [:ticker]]
end
```