From 9bae951c555f9c25876968fa98853253b7007a0f Mon Sep 17 00:00:00 2001 From: kballou Date: Fri, 24 Nov 2017 10:16:06 -0700 Subject: Level up the Echo Server This should enable the upgrade process to retain connections - Replace our simple task supervisor with a custom `simple_one_for_one` supervisor - Upgrade the echo server to use a `GenServer` behaviour --- lib/octonetcat/server_supervisor.ex | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 lib/octonetcat/server_supervisor.ex (limited to 'lib/octonetcat/server_supervisor.ex') diff --git a/lib/octonetcat/server_supervisor.ex b/lib/octonetcat/server_supervisor.ex new file mode 100644 index 0000000..7aa8e37 --- /dev/null +++ b/lib/octonetcat/server_supervisor.ex @@ -0,0 +1,23 @@ +defmodule Octonetcat.ServerSupervisor do + @moduledoc """ + Simple One-for-One Supervisor for Socket servers + """ + + use Supervisor + + def start_link do + Supervisor.start_link(__MODULE__, :ok, name: __MODULE__) + end + + def init(:ok) do + children = [ + worker(Octonetcat.Echo, [], restart: :temporary) + ] + + supervise(children, strategy: :simple_one_for_one) + end + + def start_server(socket) do + Supervisor.start_child(__MODULE__, [socket]) + end +end -- cgit v1.2.1