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:

    def deps do
      [{:ticker, "~> 0.0.1"}]
    end
  2. Ensure ticker is started before your application:

    def application do
      [applications: [:ticker]]
    end