各种有用的erlang行为
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
282 B

пре 4 година
пре 4 година
пре 4 година
пре 4 година
пре 4 година
пре 3 година
пре 4 година
пре 3 година
  1. -module(pong2).
  2. -behavior(gen_srv).
  3. -compile([export_all, nowarn_export_all]).
  4. start() ->
  5. gen_srv:start(?MODULE, 0, []).
  6. init(_Args) ->
  7. {ok, 0}.
  8. handleCall(ping, _State, _From) ->
  9. {reply, pong}.
  10. handleCast(_Msg, _State) ->
  11. kpS.
  12. handleInfo(_Msg, _State) ->
  13. kpS.