Packages

Declare job workers that can be run by a variety of queuing backends. This plugin is a port of the Rails ActiveJob gem

Current section

Files

Jump to
active_job lib active_job.ex
Raw

lib/active_job.ex

defmodule ActiveJob do
@moduledoc """
Documentation for `ActiveJob`.
"""
@doc """
Hello world.
## Examples
iex> ActiveJob.hello()
:world
"""
def hello do
:world
end
end