各种有用的erlang行为
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

20 righe
282 B

-module(pong2).
-behavior(gen_srv).
-compile([export_all, nowarn_export_all]).
start() ->
gen_srv:start(?MODULE, 0, []).
init(_Args) ->
{ok, 0}.
handleCall(ping, _State, _From) ->
{reply, pong}.
handleCast(_Msg, _State) ->
kpS.
handleInfo(_Msg, _State) ->
kpS.