mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-04 07:46:32 +01:00
48 lines
1.6 KiB
C#
48 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
namespace MediaBrowser.Controller.Persistence;
|
|
|
|
/// <summary>
|
|
/// Provides item persistence operations (save, delete, update).
|
|
/// </summary>
|
|
public interface IItemPersistenceService
|
|
{
|
|
/// <summary>
|
|
/// Deletes items by their IDs.
|
|
/// </summary>
|
|
/// <param name="ids">The IDs to delete.</param>
|
|
void DeleteItem(params IReadOnlyList<Guid> ids);
|
|
|
|
/// <summary>
|
|
/// Saves items to the database.
|
|
/// </summary>
|
|
/// <param name="items">The items to save.</param>
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
void SaveItems(IReadOnlyList<BaseItem> items, CancellationToken cancellationToken);
|
|
|
|
/// <summary>
|
|
/// Saves image info for an item.
|
|
/// </summary>
|
|
/// <param name="item">The item.</param>
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
/// <returns>A task representing the asynchronous operation.</returns>
|
|
Task SaveImagesAsync(BaseItem item, CancellationToken cancellationToken = default);
|
|
|
|
/// <summary>
|
|
/// Reattaches user data entries to the correct item.
|
|
/// </summary>
|
|
/// <param name="item">The item.</param>
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
/// <returns>A task representing the asynchronous operation.</returns>
|
|
Task ReattachUserDataAsync(BaseItem item, CancellationToken cancellationToken);
|
|
|
|
/// <summary>
|
|
/// Updates inherited values.
|
|
/// </summary>
|
|
void UpdateInheritedValues();
|
|
}
|