<GCKMediaQueueDelegate> Протокол
Протокол делегата для получения асинхронных уведомлений от GCKMediaQueue .
- С
- 4.3.4
Наследует <NSObjectNSObject>.
Вызывается, когда в очередь собираются внести одно или несколько изменений.
- Parameters
-
Вызывается, когда очередь полностью перезагружена.
Любые ранее использованные элементы очереди следует считать недействительными.
- Parameters
-
- (void) mediaQueue: |
|
( GCKMediaQueue *) |
queue |
didInsertItemsInRange: |
|
(NSRange) |
range |
|
|
| |
|
optional |
Вызывается, когда в очередь вставлен непрерывный диапазон элементов очереди.
- Parameters
-
queue | The queue. |
range | The range indicating the starting index and count of items inserted. |
- (void) mediaQueue: |
|
( GCKMediaQueue *) |
queue |
didUpdateItemsAtIndexes: |
|
(NSArray< NSNumber * > *) |
indexes |
|
|
| |
|
optional |
Вызывается, когда в очереди обновляется один или несколько элементов очереди.
Это включает в себя случай, когда ранее доступные, но недоступные элементы были извлечены и помещены в кэш, а также случай, когда ранее кэшированные элементы были удалены из кэша.
- Parameters
-
queue | The queue. |
indexes | The ordered list of indexes of the items that have been updated. |
- (void) mediaQueue: |
|
( GCKMediaQueue *) |
queue |
didRemoveItemsAtIndexes: |
|
(NSArray< NSNumber * > *) |
indexes |
|
|
| |
|
optional |
Вызывается, когда один или несколько элементов очереди были удалены из очереди.
- Parameters
-
queue | The queue. |
indexes | The ordered list of indexes of the items that have been removed. |
Вызывается после внесения в очередь одного или нескольких изменений.
Если не указано иное, контент на этой странице предоставляется по лицензии Creative Commons "С указанием авторства 4.0", а примеры кода – по лицензии Apache 2.0. Подробнее об этом написано в правилах сайта. Java – это зарегистрированный товарный знак корпорации Oracle и ее аффилированных лиц.
Последнее обновление: 2024-10-30 UTC.
[null,null,["Последнее обновление: 2024-10-30 UTC."],[[["The `GCKMediaQueueDelegate` protocol enables receiving asynchronous notifications from a `GCKMediaQueue`, informing about changes like insertions, removals, and updates."],["It provides methods to handle queue changes, including `mediaQueueWillChange:`, `mediaQueueDidReloadItems:`, `mediaQueue:didInsertItemsInRange:`, `mediaQueue:didUpdateItemsAtIndexes:`, `mediaQueue:didRemoveItemsAtIndexes:`, and `mediaQueueDidChange:`."],["These methods are optional and offer insights into queue modifications, such as when items are added, updated, or removed, or when the entire queue is reloaded."],["Developers can implement these methods to respond to queue events and update their application's state accordingly, ensuring synchronization with the media queue."]]],[]]