SubscribeReposCommit

data class SubscribeReposCommit(    val seq: Long,     val rebase: Boolean,     val tooBig: Boolean,     val repo: Did,     val commit: ByteArray,     val rev: Tid,     val since: Tid? = null,     val blocks: ByteArray,     val ops: List<SubscribeReposRepoOp>,     val blobs: List<ByteArray>,     val prevData: ByteArray? = null,     val time: Timestamp)

Represents an update of repository state. Note that empty commits are allowed, which include no repo data changes, but an update to rev and signature.

Parameters

seq

The stream sequence number of this message.

repo

The repo this event comes from. Note that all other message types name this field 'did'.

commit

Repo commit object CID.

rev

The rev of the emitted commit. Note that this information is also in the commit object included in blocks, unless this is a tooBig event.

since

The rev of the last emitted commit from this repo (if any).

blocks

CAR file containing relevant blocks, as a diff since the previous repo state. The commit must be included as a block, and the commit block CID must be the first entry in the CAR header 'roots' list.

prevData

The root CID of the MST tree for the previous commit from this repo (indicated by the 'since' revision field in this message). Corresponds to the 'data' field in the repo commit object. NOTE: this field is effectively required for the 'inductive' version of firehose.

time

Timestamp of when this message was originally broadcast.

Constructors

Link copied to clipboard
constructor(    seq: Long,     rebase: Boolean,     tooBig: Boolean,     repo: Did,     commit: ByteArray,     rev: Tid,     since: Tid? = null,     blocks: ByteArray,     ops: List<SubscribeReposRepoOp>,     blobs: List<ByteArray>,     prevData: ByteArray? = null,     time: Timestamp)

Properties

Link copied to clipboard
Link copied to clipboard

CAR file containing relevant blocks, as a diff since the previous repo state. The commit must be included as a block, and the commit block CID must be the first entry in the CAR header 'roots' list.

Link copied to clipboard

Repo commit object CID.

Link copied to clipboard
Link copied to clipboard
val prevData: ByteArray? = null

The root CID of the MST tree for the previous commit from this repo (indicated by the 'since' revision field in this message). Corresponds to the 'data' field in the repo commit object. NOTE: this field is effectively required for the 'inductive' version of firehose.

Link copied to clipboard
Link copied to clipboard
val repo: Did

The repo this event comes from. Note that all other message types name this field 'did'.

Link copied to clipboard
val rev: Tid

The rev of the emitted commit. Note that this information is also in the commit object included in blocks, unless this is a tooBig event.

Link copied to clipboard
val seq: Long

The stream sequence number of this message.

Link copied to clipboard
val since: Tid? = null

The rev of the last emitted commit from this repo (if any).

Link copied to clipboard

Timestamp of when this message was originally broadcast.

Link copied to clipboard