diff options
| author | Cody Robibero <cody@robibe.ro> | 2024-09-23 09:09:23 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-23 09:09:23 -0600 |
| commit | 3c639c2e80f2a17eea3f5f1a70c1b287bc99aba4 (patch) | |
| tree | 0d15c42ffee4c02603be75c8dc44863b8e72da02 /MediaBrowser.Controller | |
| parent | 0539fdc5e3a164b694d12d8d3f8437e2cc5b6457 (diff) | |
Tweak Trickplay migration for speed (#12643)
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/Trickplay/ITrickplayManager.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Trickplay/ITrickplayManager.cs b/MediaBrowser.Controller/Trickplay/ITrickplayManager.cs index bda794aa64..800317800d 100644 --- a/MediaBrowser.Controller/Trickplay/ITrickplayManager.cs +++ b/MediaBrowser.Controller/Trickplay/ITrickplayManager.cs @@ -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. |
