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
Current section
Files
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