mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-03 13:44:22 -04:00
37 lines
1.3 KiB
C#
37 lines
1.3 KiB
C#
using System;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Jellyfin.Server.Implementations;
|
|
|
|
/// <summary>
|
|
/// Defines the type and extension points for multi database support.
|
|
/// </summary>
|
|
public interface IJellyfinDatabaseProvider : IAsyncDisposable
|
|
{
|
|
/// <summary>
|
|
/// Gets or Sets the Database Factory when initialisaition is done.
|
|
/// </summary>
|
|
IDbContextFactory<JellyfinDbContext>? DbContextFactory { get; set; }
|
|
|
|
/// <summary>
|
|
/// Initialises jellyfins EFCore database access.
|
|
/// </summary>
|
|
/// <param name="options">The EFCore database options.</param>
|
|
void Initialise(DbContextOptionsBuilder options);
|
|
|
|
/// <summary>
|
|
/// Will be invoked when EFCore wants to build its model.
|
|
/// </summary>
|
|
/// <param name="modelBuilder">The ModelBuilder from EFCore.</param>
|
|
void OnModelCreating(ModelBuilder modelBuilder);
|
|
|
|
/// <summary>
|
|
/// If supported this should run any periodic maintaince tasks.
|
|
/// </summary>
|
|
/// <param name="cancellationToken">The token to abort the operation.</param>
|
|
/// <returns>A <see cref="Task"/> representing the asynchronous operation.</returns>
|
|
Task RunScheduledOptimisation(CancellationToken cancellationToken);
|
|
}
|