Current section

Files

Jump to
message_store lib message_store projection_behaviour.ex
Raw

lib/message_store/projection_behaviour.ex

defmodule MessageStore.ProjectionBehaviour do
@moduledoc """
Projection behaviour.
"""
alias EventStore.RecordedEvent
@doc """
The projection initial state.
"""
@callback init() :: any()
@doc """
A message handler
"""
@callback handle_message(RecordedEvent.t(), state) :: state when state: any()
end