## Arguments
- `queue_name` - a queue name(must be specified in the config).
- - `mod` - a worker module, must have `perform` function.
+ - `mod` - a worker module (must have `perform` function).
- `args` - a list of arguments for the `perform` function of the worker module.
- `priority` - a job priority (`0` by default).
apply(mod, :perform, args)
end
else
- @spec enqueue(atom(), atom(), [any()], integer()) :: :ok
def enqueue(queue_name, mod, args, priority \\ 1) do
GenServer.cast(__MODULE__, {:enqueue, queue_name, mod, args, priority})
end
{:noreply, state}
end
- def handle_cast(m, state) do
- IO.inspect("Unknown: #{inspect(m)}, #{inspect(state)}")
- {:noreply, state}
- end
-
def handle_info({:DOWN, ref, :process, _pid, _reason}, state) do
queue_name = state.refs[ref]