diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-02-04 22:01:37 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-02-04 22:01:37 -0500 |
| commit | 1f1852f3cbe2a7899aea0d306a77d2eedb0434fc (patch) | |
| tree | d91b09f6fa21f6247c3eb4cdd499aac6206c7afb /MediaBrowser.Model/ApiClient/IApiClient.cs | |
| parent | 046a1de253bbd20a2ee40958071330b316e91d6f (diff) | |
sync updates
Diffstat (limited to 'MediaBrowser.Model/ApiClient/IApiClient.cs')
| -rw-r--r-- | MediaBrowser.Model/ApiClient/IApiClient.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/MediaBrowser.Model/ApiClient/IApiClient.cs b/MediaBrowser.Model/ApiClient/IApiClient.cs index 9fe138a49..a7d11d507 100644 --- a/MediaBrowser.Model/ApiClient/IApiClient.cs +++ b/MediaBrowser.Model/ApiClient/IApiClient.cs @@ -894,6 +894,21 @@ namespace MediaBrowser.Model.ApiClient void ChangeServerLocation(string address, bool keepExistingAuth = false); /// <summary> + /// Starts the receiving synchronize job updates. + /// </summary> + /// <param name="intervalMs">The interval ms.</param> + /// <param name="jobId">The job identifier.</param> + /// <returns>Task.</returns> + Task StartReceivingSyncJobUpdates(int intervalMs, string jobId); + + /// <summary> + /// Stops the receiving synchronize job updates. + /// </summary> + /// <param name="intervalMs">The interval ms.</param> + /// <returns>Task.</returns> + Task StopReceivingSyncJobUpdates(int intervalMs); + + /// <summary> /// Starts the receiving synchronize jobs updates. /// </summary> /// <param name="intervalMs">The interval ms.</param> |
