C# 클래스 Akka.Persistence.Sql.Common.Snapshot.SnapshotEntry

Flattened and serialized snapshot object used as intermediate representation before saving snapshot with metadata inside SQL Server database.
파일 보기 프로젝트 열기: rogeralsing/akka.net 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
PersistenceId string
SequenceNr long
Snapshot byte[]
SnapshotType string
Timestamp System.DateTime

공개 메소드들

메소드 설명
SnapshotEntry ( string persistenceId, long sequenceNr, System.DateTime timestamp, string snapshotType, byte snapshot ) : System

메소드 상세

SnapshotEntry() 공개 메소드

public SnapshotEntry ( string persistenceId, long sequenceNr, System.DateTime timestamp, string snapshotType, byte snapshot ) : System
persistenceId string
sequenceNr long
timestamp System.DateTime
snapshotType string
snapshot byte
리턴 System

프로퍼티 상세

PersistenceId 공개적으로 프로퍼티

Persistence identifier of persistent actor, current snapshot relates to.
public string PersistenceId
리턴 string

SequenceNr 공개적으로 프로퍼티

Sequence number used to identify snapshot in it's persistent actor scope.
public long SequenceNr
리턴 long

Snapshot 공개적으로 프로퍼티

Serialized object data.
public byte[] Snapshot
리턴 byte[]

SnapshotType 공개적으로 프로퍼티

Stringified fully qualified CLR type name of the serialized object.
public string SnapshotType
리턴 string

Timestamp 공개적으로 프로퍼티

Timestamp used to specify date, when the snapshot has been made.
public DateTime,System Timestamp
리턴 System.DateTime