MCPcopy
hub / github.com/nats-io/nats.go / kve

Struct kve

jetstream/kv.go:985–993  ·  view source on GitHub ↗

kve is the implementation of KeyValueEntry

Source from the content-addressed store, hash-verified

983
984// kve is the implementation of KeyValueEntry
985type kve struct {
986 bucket string
987 key string
988 value []byte
989 revision uint64
990 delta uint64
991 created time.Time
992 op KeyValueOp
993}
994
995func (e *kve) Bucket() string { return e.bucket }
996func (e *kve) Key() string { return e.key }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected