View Source EventStore.Streams.StreamInfo (EventStore v1.4.0)

Link to this section Summary

Link to this section Types

@type t() :: %EventStore.Streams.StreamInfo{
  created_at: DateTime.t(),
  deleted_at: DateTime.t() | nil,
  status: :created | :deleted | nil,
  stream_id: non_neg_integer() | nil,
  stream_uuid: String.t(),
  stream_version: non_neg_integer()
}

Link to this section Functions

Link to this function

validate_expected_version(stream, expected_version)

View Source