各种有用的erlang行为
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 

20 linhas
306 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) ->
{noreply, State}.
handleInfo(_Msg, State) ->
{noreply, State}.