বর্তমান আইটেম শেষ হলে পরবর্তী আইটেম নির্বাচনের জন্য অ্যালগরিদম।
ডিফল্ট মান
chrome.cast.media.RepeatMode.OFF
startIndex
সংখ্যা
আইটেম অ্যারেতে আইটেমের সূচী যা অবশ্যই প্রথম বর্তমান আইটেম হতে হবে (যে আইটেমটি প্রথমে চালানো হবে)। মনে রাখবেন এটি অ্যারের সূচী (0 থেকে শুরু হয়) এবং আইটেমআইডি নয় (যেমন সারি তৈরি না হওয়া পর্যন্ত এটি জানা যায় না)। যদি repeatMode হয় chrome.cast.media.RepeatMode.OFF প্লেব্যাক শেষ হয়ে যাবে যখন অ্যারের শেষ আইটেমটি বাজানো হবে (স্টার্ট ইনডেক্সের আগের উপাদানগুলি চালানো হবে না)। এটি ধারাবাহিক পরিস্থিতির জন্য উপযোগী হতে পারে যেখানে ব্যবহারকারী ইতিমধ্যেই প্রেরক অ্যাপ ব্যবহার করছেন এবং মাঝখানে কাস্ট করার সিদ্ধান্ত নেন। এইভাবে প্রেরক অ্যাপটিকে স্থানীয় এবং দূরবর্তী সারির অবস্থানগুলির মধ্যে ম্যাপ করার প্রয়োজন নেই বা সারি আপডেট করার জন্য একটি অতিরিক্ত অনুরোধ সংরক্ষণ করে।
[[["সহজে বোঝা যায়","easyToUnderstand","thumb-up"],["আমার সমস্যার সমাধান হয়েছে","solvedMyProblem","thumb-up"],["অন্যান্য","otherUp","thumb-up"]],[["এতে আমার প্রয়োজনীয় তথ্য নেই","missingTheInformationINeed","thumb-down"],["খুব জটিল / অনেক ধাপ","tooComplicatedTooManySteps","thumb-down"],["পুরনো","outOfDate","thumb-down"],["অনুবাদ সংক্রান্ত সমস্যা","translationIssue","thumb-down"],["নমুনা / কোড সংক্রান্ত সমস্যা","samplesCodeIssue","thumb-down"],["অন্যান্য","otherDown","thumb-down"]],["2024-10-30 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["`QueueLoadRequest` is used to load and potentially start playing a new, ordered list of media items on a Cast receiver."],["It requires an array of `QueueItem` objects, specifying the media to be loaded and played."],["Options for playback behavior include `customData`, `repeatMode`, and `startIndex` for controlling how the queue is handled."],["`repeatMode` determines how the queue behaves after the last item is played (e.g., repeating the queue, repeating a single item, or stopping)."],["`startIndex` allows you to specify which item in the queue should be played first, useful for resuming playback from a specific point."]]],["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"]]