2020-02-04 00:49:27 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 20:02:23 +00:00
|
|
|
using System;
|
2020-05-02 22:32:22 +00:00
|
|
|
using System.Linq;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using Jellyfin.Data.Entities;
|
2020-08-14 00:48:28 +00:00
|
|
|
using Jellyfin.Data.Events;
|
2019-01-25 20:33:58 +00:00
|
|
|
using MediaBrowser.Model.Querying;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Activity
|
|
|
|
{
|
|
|
|
public interface IActivityManager
|
|
|
|
{
|
|
|
|
event EventHandler<GenericEventArgs<ActivityLogEntry>> EntryCreated;
|
|
|
|
|
2020-05-02 22:32:22 +00:00
|
|
|
Task CreateAsync(ActivityLog entry);
|
2019-01-25 20:33:58 +00:00
|
|
|
|
2020-05-02 22:32:22 +00:00
|
|
|
QueryResult<ActivityLogEntry> GetPagedResult(int? startIndex, int? limit);
|
|
|
|
|
|
|
|
QueryResult<ActivityLogEntry> GetPagedResult(
|
2020-05-14 21:13:45 +00:00
|
|
|
Func<IQueryable<ActivityLog>, IQueryable<ActivityLog>> func,
|
2020-05-02 22:32:22 +00:00
|
|
|
int? startIndex,
|
|
|
|
int? limit);
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
}
|