You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Controller/Sync/IHasDynamicAccess.cs

19 lines
630 B

9 years ago
using MediaBrowser.Model.Sync;
using System.Threading;
using System.Threading.Tasks;
namespace MediaBrowser.Controller.Sync
{
9 years ago
public interface IHasDynamicAccess
9 years ago
{
/// <summary>
9 years ago
/// Gets the synced file information.
9 years ago
/// </summary>
/// <param name="id">The identifier.</param>
9 years ago
/// <param name="target">The target.</param>
/// <param name="cancellationToken">The cancellation token.</param>
9 years ago
/// <returns>Task&lt;SyncedFileInfo&gt;.</returns>
Task<SyncedFileInfo> GetSyncedFileInfo(string id, SyncTarget target, CancellationToken cancellationToken);
9 years ago
}
}