Stone v0.1.0 Stone.GenServer

This is the module to use in your code if you want to start using our extra functionality

Example

defmodule CounterAgent do
  use Stone.GenServer

  defstart start_link(val \ 0) do
    initial_state(val)
  end
end

For more information about what you can define inside the module, please check Stone.Operations and Stone.Responders.