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.
| 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. |
| 486 | type TeeingTemporalStore struct { |
| 487 | base TemporalFactStore |
| 488 | Out TemporalFactStore |
| 489 | } |
| 490 | |
| 491 | var _ TemporalFactStore = &TeeingTemporalStore{} |
| 492 |
nothing calls this directly
no outgoing calls
no test coverage detected