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