Current section
Files
Jump to
Current section
Files
lib/chromic_pdf/pdf/call_count.ex
defmodule ChromicPDF.CallCount do
@moduledoc false
use Agent
def start_link(_opts \\ nil) do
Agent.start_link(fn -> 1 end)
end
def bump(pid) do
Agent.get_and_update(pid, &{&1, &1 + 1})
end
end