Subversion Repositories SE.SVN

Rev

Details | Last modification | View Log | RSS feed

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