Skip to content

Instantly share code, notes, and snippets.

@StevenXL
Created May 7, 2016 20:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save StevenXL/0ae9236dee234b7bb6f3d910e9155e6e to your computer and use it in GitHub Desktop.
Save StevenXL/0ae9236dee234b7bb6f3d910e9155e6e to your computer and use it in GitHub Desktop.
GenServer Supervisor - Revision 1
defmodule GenServerSupervisor do
use GenServer
# Client API #
def start_link do
GenServer.start_link(__MODULE__, [])
end
# Server API #
def init(child_specs) do
Process.flag(:trap_exit, true)
end
# Helper Functions #
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment