Copyright © 2012-2019 Arjan Scherpenisse
Authors: Arjan Scherpenisse (arjan@scherpenisse.net).
key() = term()
mfargs() = {atom(), atom(), list()}
options() = #{timeout => pos_integer(), deadline => pos_integer(), is_drop_running => boolean()}
| cancel/1 | Cancel the MFA running. |
| cancel/3 | (Deprecated.) |
| queue/2 | Call the MFA after specified in Options time. |
| queue/3 | Call the MFA after specified in Options time
using specified Key. |
| queue/4 | (Deprecated.) |
| queue/5 | (Deprecated.) |
| start/0 | Start application buffalo. |
| status/1 | Check if the task with the specified key is running or queued. |
Cancel the MFA running.
cancel(Module, Function, Arguments) -> Result
Module = atom()Function = atom()Arguments = list()Result = ok | {error, notfound}
This function is deprecated: Deprecated API
Call the MFA after specified in Options time.
queue(Key, MFA, Opts) -> Result
Call the MFA after specified in Options time
using specified Key.
queue(Module, Function, Arguments, Timeout) -> Result
Module = atom()Function = atom()Arguments = list()Timeout = pos_integer()Result = {ok, existing | new}
This function is deprecated: Deprecated API
queue(Key, Module, Function, Arguments, Timeout) -> Result
Key = key()Module = atom()Function = atom()Arguments = list()Timeout = pos_integer()Result = {ok, existing | new}
This function is deprecated: Deprecated API
start() -> Result
Result = ok | {error, Reason}Reason = term()
Start application buffalo.
Check if the task with the specified key is running or queued.
Generated by EDoc