diff options
| author | cvium <clausvium@gmail.com> | 2021-04-24 20:22:23 +0200 |
|---|---|---|
| committer | cvium <clausvium@gmail.com> | 2021-04-24 20:22:23 +0200 |
| commit | 77261a844541efdff96088c047908109d6063133 (patch) | |
| tree | 5a0b7e1b549b65ed44be86ba422ede13d0f35d23 /MediaBrowser.Controller/Library/ILibraryManager.cs | |
| parent | 224c48821e8a1528d35bef0222c729ba2604521d (diff) | |
add UpdatePeopleAsync and add people to both tables
Diffstat (limited to 'MediaBrowser.Controller/Library/ILibraryManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/ILibraryManager.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs index 80fcf71f3..6d9b568da 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -467,6 +467,15 @@ namespace MediaBrowser.Controller.Library void UpdatePeople(BaseItem item, List<PersonInfo> people); /// <summary> + /// Asynchronously updates the people. + /// </summary> + /// <param name="item">The item.</param> + /// <param name="people">The people.</param> + /// <param name="cancellationToken">The cancellation token.</param> + /// <returns>The async task.</returns> + Task UpdatePeopleAsync(BaseItem item, List<PersonInfo> people, CancellationToken cancellationToken); + + /// <summary> /// Gets the item ids. /// </summary> /// <param name="query">The query.</param> |
