blob: 4a5bfae4f00a6cbe3e70ee37620e983b2374d93c (
plain)
1
2
3
4
5
6
7
8
9
10
|
%% Poolboy - A hunky Erlang worker pool factory
-module(poolboy_worker).
-callback start_link(WorkerArgs) -> {ok, Pid} |
{error, {already_started, Pid}} |
{error, Reason} when
WorkerArgs :: proplists:proplist(),
Pid :: pid(),
Reason :: term().
|