diff options
| author | Tim Eisele <Ghost_of_Stone@web.de> | 2025-10-13 20:32:41 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-13 12:32:41 -0600 |
| commit | 5c519270b84cc07928bd45a14f38f9b1add24d01 (patch) | |
| tree | 83be33f0dfcfb22cb2e127eda7c64049ad58cd82 /MediaBrowser.Controller/Persistence/IChapterRepository.cs | |
| parent | 55047b11834cd2679329eeb6fd208dda3e5d164f (diff) | |
Remove chapters on file change (#14984)
Diffstat (limited to 'MediaBrowser.Controller/Persistence/IChapterRepository.cs')
| -rw-r--r-- | MediaBrowser.Controller/Persistence/IChapterRepository.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Persistence/IChapterRepository.cs b/MediaBrowser.Controller/Persistence/IChapterRepository.cs index 0844ddb36..64b90fd63 100644 --- a/MediaBrowser.Controller/Persistence/IChapterRepository.cs +++ b/MediaBrowser.Controller/Persistence/IChapterRepository.cs @@ -1,5 +1,7 @@ using System; using System.Collections.Generic; +using System.Threading; +using System.Threading.Tasks; using MediaBrowser.Model.Entities; namespace MediaBrowser.Controller.Persistence; @@ -13,7 +15,9 @@ public interface IChapterRepository /// Deletes the chapters. /// </summary> /// <param name="itemId">The item.</param> - void DeleteChapters(Guid itemId); + /// <param name="cancellationToken">The cancellation token.</param> + /// <returns>Task.</returns> + Task DeleteChaptersAsync(Guid itemId, CancellationToken cancellationToken); /// <summary> /// Saves the chapters. |
