PrefetchObjects brings the requested objects into the cache.
(ctx context.Context, objectIDs []object.ID, hint string)
| 261 | |
| 262 | // PrefetchObjects brings the requested objects into the cache. |
| 263 | func (r *directRepository) PrefetchObjects(ctx context.Context, objectIDs []object.ID, hint string) ([]content.ID, error) { |
| 264 | //nolint:wrapcheck |
| 265 | return object.PrefetchBackingContents(ctx, r.cmgr, objectIDs, hint) |
| 266 | } |
| 267 | |
| 268 | // ListActiveSessions returns the map of active sessions. |
| 269 | func (r *directRepository) ListActiveSessions(ctx context.Context) (map[content.SessionID]*content.SessionInfo, error) { |
nothing calls this directly
no test coverage detected