diff options
| author | Ionut Andrei Oanca <oancaionutandrei@gmail.com> | 2020-11-08 18:08:59 +0100 |
|---|---|---|
| committer | Ionut Andrei Oanca <oancaionutandrei@gmail.com> | 2020-11-13 20:55:14 +0100 |
| commit | 563a6fb3c7cd933059995cac710f46287774d401 (patch) | |
| tree | 0e7c66aeedd343e5a99f262e8d63f3bc55d85fff /MediaBrowser.Controller | |
| parent | 019bc19aa41e1729f1893365133679d8b87e90d0 (diff) | |
Minor changes to group-wait in SyncPlay
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/SyncPlay/ISyncPlayStateContext.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/SyncPlay/ISyncPlayStateContext.cs b/MediaBrowser.Controller/SyncPlay/ISyncPlayStateContext.cs index 13d38a02bb..4aac2a8818 100644 --- a/MediaBrowser.Controller/SyncPlay/ISyncPlayStateContext.cs +++ b/MediaBrowser.Controller/SyncPlay/ISyncPlayStateContext.cs @@ -18,6 +18,18 @@ namespace MediaBrowser.Controller.SyncPlay long DefaultPing { get; } /// <summary> + /// Gets the maximum time offset error accepted for dates reported by clients, in milliseconds. + /// </summary> + /// <value>The maximum offset error accepted, in milliseconds.</value> + long TimeSyncOffset { get; } + + /// <summary> + /// Gets the maximum offset error accepted for position reported by clients, in milliseconds. + /// </summary> + /// <value>The maximum offset error accepted, in milliseconds.</value> + long MaxPlaybackOffset { get; } + + /// <summary> /// Gets the group identifier. /// </summary> /// <value>The group identifier.</value> |
