TestingGetFull fetches the contents of a full blob. Returns false if not found.
(ctx context.Context, key string, output *gather.WriteBuffer)
| 8 | |
| 9 | // TestingGetFull fetches the contents of a full blob. Returns false if not found. |
| 10 | func (c *PersistentCache) TestingGetFull(ctx context.Context, key string, output *gather.WriteBuffer) bool { |
| 11 | return c.getFull(ctx, key, output) |
| 12 | } |