UpdateDelta is for per collection access to UpdateDelta method
(ctx context.Context, docID, revID string, toDelta RevisionDelta)
| 194 | |
| 195 | // UpdateDelta is for per collection access to UpdateDelta method |
| 196 | func (c *collectionRevisionCache) UpdateDelta(ctx context.Context, docID, revID string, toDelta RevisionDelta) { |
| 197 | (*c.revCache).UpdateDelta(ctx, docID, revID, c.collectionID, toDelta) |
| 198 | } |
| 199 | |
| 200 | // UpdateDeltaCV is for per collection access to UpdateDeltaCV method |
| 201 | func (c *collectionRevisionCache) UpdateDeltaCV(ctx context.Context, docID string, cv *Version, toDelta RevisionDelta) { |
nothing calls this directly
no test coverage detected