MCPcopy
hub / github.com/google/mangle / TeeingTemporalStore

Struct TeeingTemporalStore

factstore/temporal.go:486–489  ·  view source on GitHub ↗

TeeingTemporalStore is an implementation of TemporalFactStore that directs all writes to an output store, while distributing reads over a read-only base store and the output store.

Source from the content-addressed store, hash-verified

484// TeeingTemporalStore is an implementation of TemporalFactStore that directs all writes to
485// an output store, while distributing reads over a read-only base store and the output store.
486type TeeingTemporalStore struct {
487 base TemporalFactStore
488 Out TemporalFactStore
489}
490
491var _ TemporalFactStore = &TeeingTemporalStore{}
492

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected