diff options
| author | Niels van Velzen <nielsvanvelzen@users.noreply.github.com> | 2025-04-19 21:08:15 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-19 13:08:15 -0600 |
| commit | 269508be9f78901b3a3b2bea88392aeef88359e4 (patch) | |
| tree | 8885ff1537b6acb2217a372837e9714a9ada048f /MediaBrowser.Controller/SyncPlay/IGroupStateContext.cs | |
| parent | 1c190f79522268fb6b3c870749e2ab9a4b8b22fb (diff) | |
Fix SyncPlay WebSocket OpenAPI schemas (#13946)
Diffstat (limited to 'MediaBrowser.Controller/SyncPlay/IGroupStateContext.cs')
| -rw-r--r-- | MediaBrowser.Controller/SyncPlay/IGroupStateContext.cs | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/MediaBrowser.Controller/SyncPlay/IGroupStateContext.cs b/MediaBrowser.Controller/SyncPlay/IGroupStateContext.cs index d2de224503..ddf86be71f 100644 --- a/MediaBrowser.Controller/SyncPlay/IGroupStateContext.cs +++ b/MediaBrowser.Controller/SyncPlay/IGroupStateContext.cs @@ -66,11 +66,11 @@ namespace MediaBrowser.Controller.SyncPlay /// <summary> /// Sends a GroupUpdate message to the interested sessions. /// </summary> - /// <typeparam name="T">The type of the data of the message.</typeparam> /// <param name="from">The current session.</param> /// <param name="type">The filtering type.</param> /// <param name="message">The message to send.</param> /// <param name="cancellationToken">The cancellation token.</param> + /// <typeparam name="T">The group update type.</typeparam> /// <returns>The task.</returns> Task SendGroupUpdate<T>(SessionInfo from, SyncPlayBroadcastType type, GroupUpdate<T> message, CancellationToken cancellationToken); @@ -92,15 +92,6 @@ namespace MediaBrowser.Controller.SyncPlay SendCommand NewSyncPlayCommand(SendCommandType type); /// <summary> - /// Builds a new group update message. - /// </summary> - /// <typeparam name="T">The type of the data of the message.</typeparam> - /// <param name="type">The update type.</param> - /// <param name="data">The data to send.</param> - /// <returns>The group update.</returns> - GroupUpdate<T> NewSyncPlayGroupUpdate<T>(GroupUpdateType type, T data); - - /// <summary> /// Sanitizes the PositionTicks, considers the current playing item when available. /// </summary> /// <param name="positionTicks">The PositionTicks.</param> |
