各种有用的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.
 

17 lignes
271 B

-module(pong1).
-behavior(gen_server).
-compile([export_all, nowarn_export_all]).
start() ->
gen_server:start(?MODULE, 0, []).
init(_Args) ->
{ok, 0}.
handle_call(ping, _From, State) ->
{reply, pong, State}.
handle_cast(_Msg, State) ->
{noreply, State}.