Tweak Trickplay migration for speed (#12643)

This commit is contained in:
Cody Robibero
2024-09-23 09:09:23 -06:00
committed by GitHub
parent 0539fdc5e3
commit 3c639c2e80
4 changed files with 83 additions and 39 deletions

View File

@@ -46,8 +46,10 @@ public interface ITrickplayManager
/// <summary>
/// Gets the item ids of all items with trickplay info.
/// </summary>
/// <param name="limit">The limit of items to return.</param>
/// <param name="offset">The offset to start the query at.</param>
/// <returns>The list of item ids that have trickplay info.</returns>
public Task<IReadOnlyList<Guid>> GetTrickplayItemsAsync();
Task<IReadOnlyList<TrickplayInfo>> GetTrickplayItemsAsync(int limit, int offset);
/// <summary>
/// Saves trickplay info.