gen_server that lets wpool_pool
control certain aspects of the execution.
Behaviours: gen_server.
Authors: Fernando Benavides (elbrujohalcon@inaka.net).
gen_server that lets wpool_pool
control certain aspects of the execution
| age/1 | Report how old a process is in microseconds |
| call/3 | Equivalent to gen_server:call(Process, Call, Timeout). |
| cast/2 | Equivalent to gen_server:cast(Process, Cast). |
| start_link/4 | Starts a named process. |
age(Process::wpool:name() | pid()) -> non_neg_integer()
Report how old a process is in microseconds
call(Process::wpool:name() | pid(), Call::term(), Timeout::timeout()) -> term()
Equivalent to gen_server:call(Process, Call, Timeout).
cast(Process::wpool:name() | pid(), Cast::term()) -> ok
Equivalent to gen_server:cast(Process, Cast).
start_link(Name::wpool:name(), Module::module(), InitArgs::term(), Options::[wpool:option()]) -> {ok, pid()} | ignore | {error, {already_started, pid()} | term()}
Starts a named process
Generated by EDoc, Nov 10 2015, 15:43:49.