2020-05-06 21:42:53 +00:00
|
|
|
namespace MediaBrowser.Model.SyncPlay
|
2020-04-01 15:52:42 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2020-06-14 10:14:14 +00:00
|
|
|
/// Enum PlaybackRequestType.
|
2020-04-01 15:52:42 +00:00
|
|
|
/// </summary>
|
2020-04-15 16:03:58 +00:00
|
|
|
public enum PlaybackRequestType
|
2020-04-01 15:52:42 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// A user is requesting a play command for the group.
|
|
|
|
/// </summary>
|
|
|
|
Play = 0,
|
2020-06-14 10:14:14 +00:00
|
|
|
|
2020-04-01 15:52:42 +00:00
|
|
|
/// <summary>
|
|
|
|
/// A user is requesting a pause command for the group.
|
|
|
|
/// </summary>
|
|
|
|
Pause = 1,
|
2020-06-14 10:14:14 +00:00
|
|
|
|
2020-04-01 15:52:42 +00:00
|
|
|
/// <summary>
|
|
|
|
/// A user is requesting a seek command for the group.
|
|
|
|
/// </summary>
|
|
|
|
Seek = 2,
|
2020-06-14 10:14:14 +00:00
|
|
|
|
2020-04-01 15:52:42 +00:00
|
|
|
/// <summary>
|
|
|
|
/// A user is signaling that playback is buffering.
|
|
|
|
/// </summary>
|
2020-07-12 21:55:03 +00:00
|
|
|
Buffer = 3,
|
2020-06-14 10:14:14 +00:00
|
|
|
|
2020-04-01 15:52:42 +00:00
|
|
|
/// <summary>
|
|
|
|
/// A user is signaling that playback resumed.
|
|
|
|
/// </summary>
|
2020-07-12 21:55:03 +00:00
|
|
|
Ready = 4,
|
2020-06-14 10:14:14 +00:00
|
|
|
|
2020-04-01 15:52:42 +00:00
|
|
|
/// <summary>
|
|
|
|
/// A user is reporting its ping.
|
|
|
|
/// </summary>
|
2020-07-12 21:55:03 +00:00
|
|
|
Ping = 5
|
2020-04-01 15:52:42 +00:00
|
|
|
}
|
|
|
|
}
|