Akka.Persistence.Sql.Common.Snapshot.SnapshotEntry.SnapshotEntry C# (CSharp) Method

SnapshotEntry() public method

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
return System
        public SnapshotEntry(string persistenceId, long sequenceNr, DateTime timestamp, string snapshotType, byte[] snapshot)
        {
            PersistenceId = persistenceId;
            SequenceNr = sequenceNr;
            Timestamp = timestamp;
            SnapshotType = snapshotType;
            Snapshot = snapshot;
        }
    }
SnapshotEntry