aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/ApiClient/IApiClient.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-02-04 15:16:23 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-02-04 15:16:23 -0500
commit046a1de253bbd20a2ee40958071330b316e91d6f (patch)
treead3408bce7f5b6f697174cb2614fa8643ecb27ed /MediaBrowser.Model/ApiClient/IApiClient.cs
parente6ea26e3ded2f37d8b8f364821cf6dd0a89b8af8 (diff)
sync updates
Diffstat (limited to 'MediaBrowser.Model/ApiClient/IApiClient.cs')
-rw-r--r--MediaBrowser.Model/ApiClient/IApiClient.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/MediaBrowser.Model/ApiClient/IApiClient.cs b/MediaBrowser.Model/ApiClient/IApiClient.cs
index bcd1dfe12..9fe138a49 100644
--- a/MediaBrowser.Model/ApiClient/IApiClient.cs
+++ b/MediaBrowser.Model/ApiClient/IApiClient.cs
@@ -894,6 +894,22 @@ namespace MediaBrowser.Model.ApiClient
void ChangeServerLocation(string address, bool keepExistingAuth = false);
/// <summary>
+ /// Starts the receiving synchronize jobs updates.
+ /// </summary>
+ /// <param name="intervalMs">The interval ms.</param>
+ /// <param name="userId">The user identifier.</param>
+ /// <param name="targetId">The target identifier.</param>
+ /// <returns>Task.</returns>
+ Task StartReceivingSyncJobsUpdates(int intervalMs, string userId, string targetId);
+
+ /// <summary>
+ /// Stops the receiving synchronize jobs updates.
+ /// </summary>
+ /// <param name="intervalMs">The interval ms.</param>
+ /// <returns>Task.</returns>
+ Task StopReceivingSyncJobsUpdates(int intervalMs);
+
+ /// <summary>
/// Starts the receiving session updates.
/// </summary>
/// <param name="intervalMs">The interval ms.</param>