summaryrefslogtreecommitdiff
path: root/lib/nola/icecast_agent.ex
blob: 8a3a72bb2748eca11160f017e66eb5cdf92b375a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
defmodule Nola.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