about summary refs log tree commit diff
path: root/src/hello_server2.erl
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2016-09-22T13·37+0200
committerVincent Ambo <tazjin@gmail.com>2016-09-22T13·37+0200
commitfac2474ac66cd9a561844b1a6a8f9a91aa45e160 (patch)
tree76d8312e6e3e4945ab5f58b8ecb398ce4ebd071d /src/hello_server2.erl
parent6c456a06c7166b70a2347283a7afcfc4107cb3c7 (diff)
Add the rest of the damn presentation
Diffstat (limited to 'src/hello_server2.erl')
-rw-r--r--src/hello_server2.erl36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/hello_server2.erl b/src/hello_server2.erl
new file mode 100644
index 000000000000..24bb934ee503
--- /dev/null
+++ b/src/hello_server2.erl
@@ -0,0 +1,36 @@
+-module(hello_server2).
+-behaviour(gen_server).
+-compile(export_all).
+
+%%% Start callback for supervisor
+start_link() ->
+    gen_server:start_link({local, ?MODULE}, ?MODULE, [], []).
+
+%%% gen_server callbacks
+
+init([]) ->
+    {ok, sets:new()}.
+
+handle_call({greet, Name}, _From, State) ->
+    io:format("Hello ~s!~n", [Name]),
+    NewState = sets:add_element(Name, State),
+    {reply, ok, NewState};
+
+handle_call({bye, Name}, _From, State) ->
+    io:format("Goodbye ~s!~n", [Name]),
+    NewState = sets:del_element(Name, State),
+    {reply, ok, NewState}.
+
+terminate(normal, State) ->
+    [io:format("Goodbye ~s!~n", [Name]) || Name <- State],
+    ok.
+
+%%% Unused gen_server callbacks
+code_change(_OldVsn, State, _Extra) ->
+    {ok, State}.
+
+handle_info(_Info, State) ->
+    {noreply, State}.
+
+handle_cast(_Request, State) ->
+    {noreply, State}.