SyncPlayBroadcastType.cs 735 B

12345678910111213141516171819202122232425262728
  1. namespace MediaBrowser.Model.SyncPlay
  2. {
  3. /// <summary>
  4. /// Used to filter the sessions of a group.
  5. /// </summary>
  6. public enum SyncPlayBroadcastType
  7. {
  8. /// <summary>
  9. /// All sessions will receive the message.
  10. /// </summary>
  11. AllGroup = 0,
  12. /// <summary>
  13. /// Only the specified session will receive the message.
  14. /// </summary>
  15. CurrentSession = 1,
  16. /// <summary>
  17. /// All sessions, except the current one, will receive the message.
  18. /// </summary>
  19. AllExceptCurrentSession = 2,
  20. /// <summary>
  21. /// Only sessions that are not buffering will receive the message.
  22. /// </summary>
  23. AllReady = 3
  24. }
  25. }