各种有用的erlang行为
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 

20 lignes
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.