Informações gerais
Métodos a serem chamados apenas por subclasses GCKRemoteMediaClient.
- Como
- 3,3
Resumo do método de instância | |
(void) | - notifyDidStartMediaSession |
Ser chamado por subclasses sempre que uma sessão de mídia começar, ou seja, logo após o carregamento de novas mídias no player remoto. Mais... | |
(void) | - notifyDidUpdateMediaStatus |
A ser chamado por subclasses sempre que o objeto mediaStatus do cliente mudar. Mais... | |
(void) | - notifyDidUpdateQueue |
Ser chamado por subclasses sempre que a fila de mídia gerenciada pelo cliente mudar. Mais... | |
(void) | - notifyDidUpdatePreloadStatus |
Para ser chamado por subclasses sempre que o GCKMediaStatus::preloadedItemID do GCKMediaStatus do cliente mudar. Mais... | |
(void) | - notifyDidUpdateMetadata |
Ser chamado por subclasses sempre que os metadados mudarem. Mais... | |
(void) | - notifyDidReceiveQueueItemIDs: |
Precisa ser chamado por subclasses sempre que a lista de IDs de itens da fila de mídia for recebida. Mais... | |
(void) | - notifyDidInsertQueueItemsWithIDs:beforeItemWithID: |
Ser chamado por subclasses sempre que uma sequência contígua de itens da fila for inserida na fila. Mais... | |
(void) | - notifyDidUpdateQueueItemsWithIDs: |
Ser chamado por subclasses sempre que itens existentes da fila forem atualizados na fila. Mais... | |
(void) | - notifyDidRemoveQueueItemsWithIDs: |
Ser chamado por subclasses sempre que uma sequência contígua de itens da fila for removida. Mais... | |
(void) | - notifyDidReceiveQueueItems: |
Ser chamado por uma subclasse sempre que itens da fila forem recebidos. Mais... | |
Detalhes dos métodos
- (void) notifyDidStartMediaSession |
Ser chamado por subclasses sempre que uma sessão de mídia começar, ou seja, logo após o carregamento de novas mídias no player remoto.
Estende a classe GCKRemoteMediaClient.
- (void) notifyDidUpdateMediaStatus |
A ser chamado por subclasses sempre que o objeto mediaStatus do cliente mudar.
Estende a classe GCKRemoteMediaClient.
- (void) notifyDidUpdateQueue |
Ser chamado por subclasses sempre que a fila de mídia gerenciada pelo cliente mudar.
Estende a classe GCKRemoteMediaClient.
- (void) notifyDidUpdatePreloadStatus |
Para ser chamado por subclasses sempre que o GCKMediaStatus::preloadedItemID do GCKMediaStatus do cliente mudar.
Estende a classe GCKRemoteMediaClient.
- (void) notifyDidUpdateMetadata |
Ser chamado por subclasses sempre que os metadados mudarem.
Estende a classe GCKRemoteMediaClient.
- (void) notifyDidReceiveQueueItemIDs: | (NSArray< NSNumber * > *) | itemIDs |
Precisa ser chamado por subclasses sempre que a lista de IDs de itens da fila de mídia for recebida.
- Parameters
-
itemIDs The list of queue item IDs.
- Como
- 4,1
Estende a classe GCKRemoteMediaClient.
- (void) notifyDidInsertQueueItemsWithIDs: | (NSArray< NSNumber * > *) | itemIDs | |
beforeItemWithID: | (GCKMediaQueueItemID) | beforeItemID | |
Ser chamado por subclasses sempre que uma sequência contígua de itens da fila for inserida na fila.
- Parameters
-
itemIDs The list of queue item IDs identifying the items that were inserted. beforeItemID The ID of the queue item in front of which the new items were inserted, or kGCKInvalidQueueItemID if the items were appended to the end of the queue.
- Como
- 4,1
Estende a classe GCKRemoteMediaClient.
- (void) notifyDidUpdateQueueItemsWithIDs: | (NSArray< NSNumber * > *) | itemIDs |
Ser chamado por subclasses sempre que itens existentes da fila forem atualizados na fila.
- Parameters
-
itemIDs The list of queue item IDs identifying the items that were updated.
- Como
- 4,1
Estende a classe GCKRemoteMediaClient.
- (void) notifyDidRemoveQueueItemsWithIDs: | (NSArray< NSNumber * > *) | itemIDs |
Ser chamado por subclasses sempre que uma sequência contígua de itens da fila for removida.
- Parameters
-
itemIDs The list of queue item IDs identifying the items that were removed.
- Como
- 4,1
Estende a classe GCKRemoteMediaClient.
- (void) notifyDidReceiveQueueItems: | (NSArray< GCKMediaQueueItem * > *) | items |
Ser chamado por uma subclasse sempre que itens da fila forem recebidos.
- Parameters
-
items The list of queue items.
- Como
- 4,1
Estende a classe GCKRemoteMediaClient.