AI-generated Key Takeaways
-
The
GCKMediaQueueDelegate
protocol enables receiving asynchronous notifications from aGCKMediaQueue
, informing about changes like insertions, removals, and updates. -
It provides methods to handle queue changes, including
mediaQueueWillChange:
,mediaQueueDidReloadItems:
,mediaQueue:didInsertItemsInRange:
,mediaQueue:didUpdateItemsAtIndexes:
,mediaQueue:didRemoveItemsAtIndexes:
, andmediaQueueDidChange:
. -
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.
Overview
The delegate protocol for receiving asynchronous notifications from a GCKMediaQueue.
- Since
- 4.3.4
Inherits <NSObjectNSObject>.
Instance Method Summary | |
(void) | - mediaQueueWillChange: |
Called when one or more changes are about to be made to the queue. More... | |
(void) | - mediaQueueDidReloadItems: |
Called when the queue has been entirely reloaded. More... | |
(void) | - mediaQueue:didInsertItemsInRange: |
Called when a contiguous range of queue items ahve been inserted into the queue. More... | |
(void) | - mediaQueue:didUpdateItemsAtIndexes: |
Called when one or more queue items have been updated in the queue. More... | |
(void) | - mediaQueue:didRemoveItemsAtIndexes: |
Called when one or more queue items have been removed from the queue. More... | |
(void) | - mediaQueueDidChange: |
Called after one or more queue changes have been made to the queue. More... | |
Method Detail
|
optional |
Called when one or more changes are about to be made to the queue.
- Parameters
-
queue The queue.
|
optional |
Called when the queue has been entirely reloaded.
Any previously accessed queue items should be considered invalid.
- Parameters
-
queue The queue.
|
optional |
Called when a contiguous range of queue items ahve been inserted into the queue.
- Parameters
-
queue The queue. range The range indicating the starting index and count of items inserted.
|
optional |
Called when one or more queue items have been updated in the queue.
This includes the case where previously accessed but unavailable items have been retrieved and placed in the cache, and the case where previously cached items have been flushed from the cache.
- Parameters
-
queue The queue. indexes The ordered list of indexes of the items that have been updated.
|
optional |
Called when one or more queue items have been removed from the queue.
- Parameters
-
queue The queue. indexes The ordered list of indexes of the items that have been removed.
|
optional |
Called after one or more queue changes have been made to the queue.