9a0dfc00f1
* Add all websocket messages to generated openapi spec * Use oneOf * JsonIgnore ServerId * Oops * Add discriminators * Add WebSocketMessage container for Inbound and Outbound messages
24 lines
715 B
C#
24 lines
715 B
C#
using System.ComponentModel;
|
|
using MediaBrowser.Model.Session;
|
|
|
|
namespace MediaBrowser.Controller.Net.WebSocketMessages.Outbound;
|
|
|
|
/// <summary>
|
|
/// Force keep alive websocket messages.
|
|
/// </summary>
|
|
public class ForceKeepAliveMessage : WebSocketMessage<int>, IOutboundWebSocketMessage
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ForceKeepAliveMessage"/> class.
|
|
/// </summary>
|
|
/// <param name="data">The timeout in seconds.</param>
|
|
public ForceKeepAliveMessage(int data)
|
|
: base(data)
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
[DefaultValue(SessionMessageType.ForceKeepAlive)]
|
|
public override SessionMessageType MessageType => SessionMessageType.ForceKeepAlive;
|
|
}
|