about summary refs log tree commit diff
path: root/presentations/erlang-2016/src/hello_sup.erl
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2019-12-21T00·37+0000
committerVincent Ambo <tazjin@google.com>2019-12-21T00·38+0000
commit8ab71587a7fe532785950ed9dbc2bcfa1acdfcc4 (patch)
treed83d3b872c8710dbf22292f3e317f9e77018bc49 /presentations/erlang-2016/src/hello_sup.erl
parent421ef0a77f366cfa7d7d658f685f63da0264df87 (diff)
chore(erlang-presentation): Prepare for depot merge
Diffstat (limited to 'presentations/erlang-2016/src/hello_sup.erl')
-rw-r--r--presentations/erlang-2016/src/hello_sup.erl24
1 files changed, 24 insertions, 0 deletions
diff --git a/presentations/erlang-2016/src/hello_sup.erl b/presentations/erlang-2016/src/hello_sup.erl
new file mode 100644
index 0000000000..7fee0928c5
--- /dev/null
+++ b/presentations/erlang-2016/src/hello_sup.erl
@@ -0,0 +1,24 @@
+-module(hello_sup).
+-behaviour(supervisor).
+-export([start_link/0, init/1]).
+
+%%% Module API
+
+start_link() ->
+    supervisor:start_link({local, ?MODULE}, ?MODULE, []).
+
+%%% Supervisor callbacks
+
+init([]) ->
+    Children = [hello_spec()],
+    {ok, { {one_for_one, 5, 10}, Children}}.
+
+%%% Private
+
+hello_spec() ->
+    #{id       => hello_server2,
+      start    => {hello_server2, start_link, []},
+      restart  => permanent,
+      shutdown => 5000,
+      type     => worker,
+      module   => [hello_server2]}.