Geçerli öğe sona erdiğinde sonraki öğeyi seçmek için kullanılan algoritma.
Varsayılan değer
chrome.cast.media.RepeatMode.OFF
startIndex
sayı
items dizisindeki öğenin dizini, ilk currentItem (önce çalınacak öğe) olması gereken öğedir. Bunun, (sıra oluşturulana kadar bilinmediğinden) itemId değeri değil, dizinin dizini (0'dan başlar) olduğunu unutmayın. ContinueMode, chrome.cast.media.DuplicateMode.OFF ise dizideki son öğe oynatıldığında oynatma sona erer (startIndex'ten önceki öğeler çalınmaz). Bu, kullanıcının zaten gönderen uygulamasını kullandığı ve ortadaki uygulamanın yayınlamaya karar verdiği devam senaryoları için yararlı olabilir. Bu sayede, gönderen uygulamasının yerel ve uzak sıra konumları arasında eşleme yapmasına gerek kalmaz veya sırayı güncellemek için fazladan bir istek kaydeder.
[[["Anlaması kolay","easyToUnderstand","thumb-up"],["Sorunumu çözdü","solvedMyProblem","thumb-up"],["Diğer","otherUp","thumb-up"]],[["İhtiyacım olan bilgiler yok","missingTheInformationINeed","thumb-down"],["Çok karmaşık / çok fazla adım var","tooComplicatedTooManySteps","thumb-down"],["Güncel değil","outOfDate","thumb-down"],["Çeviri sorunu","translationIssue","thumb-down"],["Örnek veya kod sorunu","samplesCodeIssue","thumb-down"],["Diğer","otherDown","thumb-down"]],["Son güncelleme tarihi: 2025-07-25 UTC."],[[["\u003cp\u003e\u003ccode\u003eQueueLoadRequest\u003c/code\u003e is used to load and potentially start playing a new, ordered list of media items on a Cast receiver.\u003c/p\u003e\n"],["\u003cp\u003eIt requires an array of \u003ccode\u003eQueueItem\u003c/code\u003e objects, specifying the media to be loaded and played.\u003c/p\u003e\n"],["\u003cp\u003eOptions for playback behavior include \u003ccode\u003ecustomData\u003c/code\u003e, \u003ccode\u003erepeatMode\u003c/code\u003e, and \u003ccode\u003estartIndex\u003c/code\u003e for controlling how the queue is handled.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003erepeatMode\u003c/code\u003e determines how the queue behaves after the last item is played (e.g., repeating the queue, repeating a single item, or stopping).\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003estartIndex\u003c/code\u003e allows you to specify which item in the queue should be played first, useful for resuming playback from a specific point.\u003c/p\u003e\n"]]],["The `QueueLoadRequest` class manages loading and playing an ordered list of media items. It requires a non-empty array of `QueueItem` objects. Key properties include `items` (the media list), `repeatMode` (playback behavior after an item ends), `startIndex` (specifying the first item to play by its index), and `customData` (for receiver app customization). `startIndex` defaults to 0, and `repeatMode` defaults to OFF. The provided array is sorted by index.\n"],null,[]]