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.
Exibir arquivo 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_oe property

public bool IsDeleted
return bool

Manifest public_oe property

public string Manifest
return string

Payload public_oe property

public object Payload
return object

PersistenceId public_oe property

public string PersistenceId
return string

SequenceNr public_oe property

public long SequenceNr
return long

Timestamp public_oe property

public DateTime,System Timestamp
return System.DateTime