RemoveWithCV is for per collection access to Remove method
(ctx context.Context, docID string, cv *Version)
| 189 | |
| 190 | // RemoveWithCV is for per collection access to Remove method |
| 191 | func (c *collectionRevisionCache) RemoveWithCV(ctx context.Context, docID string, cv *Version) { |
| 192 | (*c.revCache).RemoveWithCV(ctx, docID, cv, c.collectionID) |
| 193 | } |
| 194 | |
| 195 | // UpdateDelta is for per collection access to UpdateDelta method |
| 196 | func (c *collectionRevisionCache) UpdateDelta(ctx context.Context, docID, revID string, toDelta RevisionDelta) { |
nothing calls this directly
no test coverage detected