aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/ApiClient/IApiClient.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/ApiClient/IApiClient.cs')
-rw-r--r--MediaBrowser.Model/ApiClient/IApiClient.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/MediaBrowser.Model/ApiClient/IApiClient.cs b/MediaBrowser.Model/ApiClient/IApiClient.cs
index 254a7e7e0..9f22de3ac 100644
--- a/MediaBrowser.Model/ApiClient/IApiClient.cs
+++ b/MediaBrowser.Model/ApiClient/IApiClient.cs
@@ -836,6 +836,26 @@ namespace MediaBrowser.Model.ApiClient
void ClearAuthenticationInfo();
/// <summary>
+ /// Changes the server location.
+ /// </summary>
+ /// <param name="address">The address.</param>
+ /// <param name="keepExistingAuth">if set to <c>true</c> [keep existing authentication].</param>
+ void ChangeServerLocation(string address, bool keepExistingAuth = false);
+
+ /// <summary>
+ /// Starts the receiving session updates.
+ /// </summary>
+ /// <param name="intervalMs">The interval ms.</param>
+ /// <returns>Task.</returns>
+ Task StartReceivingSessionUpdates(int intervalMs);
+
+ /// <summary>
+ /// Stops the receiving session updates.
+ /// </summary>
+ /// <returns>Task.</returns>
+ Task StopReceivingSessionUpdates();
+
+ /// <summary>
/// Gets the image URL.
/// </summary>
/// <param name="item">The item.</param>