Module octopus_pool_config_server

Behaviours: gen_server.

Function Index

code_change/3
config_change/2
handle_call/3
handle_cast/2
handle_info/2
init/1
start_link/1
terminate/2

Function Details

code_change/3

code_change(OldVsn, State, Extra) -> {ok, State} | {error, Reason}

config_change/2

config_change(PoolId, Opts) -> ok

handle_call/3

handle_call(Request, From, State) -> {reply, Reply, State} | {reply, Reply, State, Timeout} | {noreply, State} | {noreply, State, Timeout} | {stop, Reason, Reply, State}

handle_cast/2

handle_cast(Request, State) -> {noreply, State} | {noreply, State, Timeout} | {stop, Reason, State}

handle_info/2

handle_info(Request, State) -> {noreply, State} | {noreply, State, Timeout} | {stop, Reason, State}

init/1

init(Opts) -> {ok, State} | {ok, State, Timeout} | ignore | {stop, Reason}

start_link/1

start_link(PoolId) -> {ok, Pid}

terminate/2

terminate(Reason, State) -> ok


Generated by EDoc