Class JournalEntry
Class used for storing intermediate result of the IPersistentRepresentation in form which is ready to be stored directly in the SQL table.
Inherited Members
Namespace: Akka.Persistence.Sql.Common.Journal
Assembly: Akka.Persistence.Sqlite.dll
Syntax
public sealed class JournalEntry
Constructors
| Improve this Doc View SourceJournalEntry(String, Int64, Boolean, String, DateTime, Object)
TBD
Declaration
public JournalEntry(string persistenceId, long sequenceNr, bool isDeleted, string manifest, DateTime timestamp, object payload)
Parameters
| Type | Name | Description |
|---|---|---|
| String | persistenceId | TBD |
| Int64 | sequenceNr | TBD |
| Boolean | isDeleted | TBD |
| String | manifest | TBD |
| DateTime | timestamp | TBD |
| Object | payload | TBD |
Fields
| Improve this Doc View SourceIsDeleted
TBD
Declaration
public readonly bool IsDeleted
Field Value
| Type | Description |
|---|---|
| Boolean |
Manifest
TBD
Declaration
public readonly string Manifest
Field Value
| Type | Description |
|---|---|
| String |
Payload
TBD
Declaration
public readonly object Payload
Field Value
| Type | Description |
|---|---|
| Object |
PersistenceId
TBD
Declaration
public readonly string PersistenceId
Field Value
| Type | Description |
|---|---|
| String |
SequenceNr
TBD
Declaration
public readonly long SequenceNr
Field Value
| Type | Description |
|---|---|
| Int64 |
Timestamp
TBD
Declaration
public readonly DateTime Timestamp
Field Value
| Type | Description |
|---|---|
| DateTime |
Improve this Doc