Current section

Files

Jump to
eventstore lib event_store subscriptions subscription_state.ex
Raw

lib/event_store/subscriptions/subscription_state.ex

defmodule EventStore.Subscriptions.SubscriptionState do
defstruct [
stream_uuid: nil,
stream: nil,
subscription_name: nil,
source: nil,
subscriber: nil,
last_seen: 0,
last_ack: 0,
pending_events: [],
max_size: nil,
]
end