Subscribe Repos Commit
data class SubscribeReposCommit(val seq: Long, val rebase: Boolean, val tooBig: Boolean, val repo: Did, val commit: ByteArray, val prev: ByteArray? = null, val rev: String, val since: String? = null, val blocks: ByteArray, val ops: List<SubscribeReposRepoOp>, val blobs: List<ByteArray>, 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.
too Big
Indicates that this commit contained too many ops, or data size was too large. Consumers will need to make a separate request to get missing data.
repo
The repo this event comes from.
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.
time
Timestamp of when this message was originally broadcast.