update server sync

This commit is contained in:
Luke Pulverenti
2015-03-10 14:10:38 -04:00
parent af90f0a059
commit 401c962c7f
4 changed files with 25 additions and 28 deletions

View File

@@ -42,8 +42,9 @@ namespace MediaBrowser.Controller.Sync
/// Gets the cached item.
/// </summary>
/// <param name="target">The target.</param>
/// <param name="id">The identifier.</param>
/// <param name="serverId">The server identifier.</param>
/// <param name="itemId">The item identifier.</param>
/// <returns>Task&lt;LocalItem&gt;.</returns>
Task<LocalItem> GetCachedItem(SyncTarget target, string id);
Task<List<LocalItem>> GetCachedItems(SyncTarget target, string serverId, string itemId);
}
}