View Source OnePiece.Commanded.Command (OnePiece.Commanded v0.15.0)
Defines "Command" modules.
Link to this section Summary
Functions
Converts the module into an Ecto.Schema
.
Link to this section Types
@type t() :: struct()
Link to this section Functions
Converts the module into an Ecto.Schema
.
It derives from Jason.Encoder
and also adds some factory functions to create
structs.
usage
Usage
defmodule MyCommand do
use OnePiece.Commanded.Command, aggregate_identifier: :id
embedded_schema do
# ...
end
end