Packages

Asset-first data orchestration framework for Elixir/BEAM.

Current section

Files

Jump to
flowstone lib flowstone checkpoint notifier.ex
Raw

lib/flowstone/checkpoint/notifier.ex

defmodule FlowStone.Checkpoint.Notifier do
@moduledoc """
Stub notifier for checkpoint events.
"""
@callback notify(event :: atom(), payload :: map()) :: :ok
@doc """
Default no-op notifier.
"""
@spec notify(atom(), map()) :: :ok
def notify(_event, _payload), do: :ok
end