Behaviours: gen_server2.
mfargs() = {atom(), atom(), [any()]}
code_change(OldVsn, State, Extra) -> any()
default_pool() -> atom()
dispatch_sync(Fun::fun(() -> any()) | mfargs()) -> ok
dispatch_sync(Server, Fun) -> any()
handle_call(Msg, From, State) -> any()
handle_cast(Msg, State) -> any()
handle_info(Msg, State) -> any()
idle(Server::atom(), WPid::pid()) -> ok
init(X1) -> any()
ready(Server::atom(), WPid::pid()) -> ok
start_link(Name::atom()) -> {ok, pid()} | {error, any()}
submit(Fun::fun(() -> A) | mfargs()) -> A
submit(Fun::fun(() -> A) | mfargs(), ProcessModel::reuse | single) -> A
submit(Server::atom(), Fun::fun(() -> A) | mfargs(), ProcessModel::reuse | single) -> A
submit_async(Fun::fun(() -> any()) | mfargs()) -> ok
submit_async(Server, Fun) -> any()
terminate(Reason, State) -> any()
Generated by EDoc