Struct EventId
Persisted event identifier returning set of keys used to map particular instance of an event to database row id.
Inherited Members
Namespace: Akka.Persistence.Sql.Common.Journal
Assembly: Akka.Persistence.Sqlite.dll
Syntax
public struct EventId
Constructors
| Improve this Doc View SourceEventId(Int64, Int64, String)
TBD
Declaration
public EventId(long id, long sequenceNr, string persistenceId)
Parameters
| Type | Name | Description |
|---|---|---|
| Int64 | id | TBD |
| Int64 | sequenceNr | TBD |
| String | persistenceId | TBD |
Fields
| Improve this Doc View SourceId
Database row identifier.
Declaration
public readonly long Id
Field Value
| Type | Description |
|---|---|
| Int64 |
PersistenceId
Id of persistent actor, used to recognize all events related to that actor.
Declaration
public readonly string PersistenceId
Field Value
| Type | Description |
|---|---|
| String |
SequenceNr
Persistent event sequence number, monotonically increasing in scope of the same PersistenceId.
Declaration
public readonly long SequenceNr
Field Value
| Type | Description |
|---|---|
| Int64 |
Improve this Doc