C# Class Akka.Persistence.Sql.Common.Journal.JournalEntry

Class used for storing intermediate result of the IPersistentRepresentation in form which is ready to be stored directly in the SQL table.
Show file Open project: rogeralsing/akka.net Class Usage Examples

Public Properties

Property Type Description
IsDeleted bool
Manifest string
Payload object
PersistenceId string
SequenceNr long
Timestamp System.DateTime

Public Methods

Method Description
JournalEntry ( string persistenceId, long sequenceNr, bool isDeleted, string manifest, System.DateTime timestamp, object payload ) : System

Method Details

JournalEntry() public method

public JournalEntry ( string persistenceId, long sequenceNr, bool isDeleted, string manifest, System.DateTime timestamp, object payload ) : System
persistenceId string
sequenceNr long
isDeleted bool
manifest string
timestamp System.DateTime
payload object
return System

Property Details

IsDeleted public property

public bool IsDeleted
return bool

Manifest public property

public string Manifest
return string

Payload public property

public object Payload
return object

PersistenceId public property

public string PersistenceId
return string

SequenceNr public property

public long SequenceNr
return long

Timestamp public property

public DateTime,System Timestamp
return System.DateTime