Rename interface

- Fix wrong inheritance in ArchiveModelManager
- Add license headers
This commit is contained in:
naoey 2019-06-11 23:47:05 +05:30
parent 4a6074865e
commit c320b6110c
No known key found for this signature in database
GPG Key ID: 670DA9BE3DF7EE60
4 changed files with 11 additions and 16 deletions

View File

@ -18,7 +18,7 @@ namespace osu.Game.Database
/// </summary>
/// <typeparam name="TModel">The model type.</typeparam>
/// <typeparam name="TFileModel">The associated file join type.</typeparam>
public abstract class ArchiveDownloadModelManager<TModel, TFileModel> : ArchiveModelManager<TModel, TFileModel>, IDownloadModelManager<TModel>
public abstract class ArchiveDownloadModelManager<TModel, TFileModel> : ArchiveModelManager<TModel, TFileModel>, IModelDownloader<TModel>
where TModel : class, IHasFiles<TFileModel>, IHasPrimaryKey, ISoftDelete
where TFileModel : INamedFileInfo, new()
{

View File

@ -29,7 +29,7 @@ namespace osu.Game.Database
/// </summary>
/// <typeparam name="TModel">The model type.</typeparam>
/// <typeparam name="TFileModel">The associated file join type.</typeparam>
public abstract class ArchiveModelManager<TModel, TFileModel> : ICanAcceptFiles, IModelManager
public abstract class ArchiveModelManager<TModel, TFileModel> : ICanAcceptFiles, IModelManager<TModel>
where TModel : class, IHasFiles<TFileModel>, IHasPrimaryKey, ISoftDelete
where TFileModel : INamedFileInfo, new()
{
@ -44,7 +44,7 @@ namespace osu.Game.Database
/// Fired when a new <see cref="TModel"/> becomes available in the database.
/// This is not guaranteed to run on the update thread.
/// </summary>
public event ItemAddedDelegate ItemAdded;
public event Action<TModel, bool> ItemAdded;
/// <summary>
/// Fired when a <see cref="TModel"/> is removed from the database.

View File

@ -1,11 +1,12 @@
using osu.Game.Online.API;
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Game.Online.API;
using System;
using System.Collections.Generic;
using System.Text;
namespace osu.Game.Database
{
public interface IDownloadModelManager<TModel> : IModelManager<TModel>
public interface IModelDownloader<TModel> : IModelManager<TModel>
where TModel : class
{
/// <summary>

View File

@ -1,20 +1,14 @@

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
namespace osu.Game.Database
{
public interface IModelManager<TModel>
{
/// <summary>
/// Fired when a new <see cref="TModel"/> becomes available in the database.
/// This is not guaranteed to run on the update thread.
/// </summary>
event Action<TModel, bool> ItemAdded;
/// <summary>
/// Fired when a <see cref="TModel"/> is removed from the database.
/// This is not guaranteed to run on the update thread.
/// </summary>
event Action<TModel> ItemRemoved;
}
}