Behaviours: gen_server
.
code_change/3 | |
get_uuids/2 | Get a list of uuids from the server. |
handle_call/3 | |
handle_cast/2 | |
handle_info/2 | |
random/0 | return a random uuid. |
start_link/0 | Starts the couchbeam process linked to the calling process. |
terminate/2 | |
utc_random/0 | return a random uuid based on time. |
code_change(OldVsn, State, Extra) -> any()
Get a list of uuids from the server
handle_call(X1, From, State) -> any()
handle_cast(Msg, State) -> any()
handle_info(Info, State) -> any()
random() -> binary()
return a random uuid
start_link() -> {ok, pid()}
Starts the couchbeam process linked to the calling process. Usually invoked by the supervisor couchbeam_sup
terminate(Reason, State) -> any()
utc_random() -> binary()
return a random uuid based on time