aboutsummaryrefslogtreecommitdiff
path: root/lib/octochat/server_supervisor.ex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/octochat/server_supervisor.ex')
-rw-r--r--lib/octochat/server_supervisor.ex24
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/octochat/server_supervisor.ex b/lib/octochat/server_supervisor.ex
new file mode 100644
index 0000000..d412ca5
--- /dev/null
+++ b/lib/octochat/server_supervisor.ex
@@ -0,0 +1,24 @@
+defmodule Octochat.ServerSupervisor do
+ @moduledoc """
+ Simple One-for-One Supervisor for socket connections
+ """
+
+ use Supervisor
+
+ def start_link() do
+ Supervisor.start_link(__MODULE__, :ok, name: __MODULE__)
+ end
+
+ def init(:ok) do
+ children = [
+ worker(Octochat.Echo, [], restart: :temporary)
+ ]
+
+ supervise(children, strategy: :simple_one_for_one)
+ end
+
+ def start_server(socket) do
+ Supervisor.start_child(__MODULE__, [socket])
+ end
+
+end