Elixir ATProtocol ingestion and sync library.
at main 11 lines 277 B view raw
1defmodule Drinkup.Tap.Consumer do 2 @moduledoc """ 3 Behaviour for handling Tap events. 4 5 Implemented by `Drinkup.Tap`, you'll likely want to be using that instead. 6 """ 7 8 alias Drinkup.Tap.Event 9 10 @callback handle_event(Event.Record.t() | Event.Identity.t()) :: any() 11end