summaryrefslogblamecommitdiff
path: root/lib/lsg/icecast_agent.ex
blob: 8f8a86ae27e5f7bad4e9d68c74309f835d7aa4e3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                     
defmodule LSG.IcecastAgent do
  use Agent

  def start_link() do
    Agent.start_link(fn -> nil end, name: __MODULE__)
  end

  def update(stats) do
    Agent.update(__MODULE__, fn(_old) -> stats end)
  end

  def get do
    Agent.get(__MODULE__, fn(stats) -> stats end)
  end

end