Il protocollo delegato GCKDeviceManager.
Salvo diversamente indicato, il chiamante non deve rilasciare l'oggetto GCKDeviceManager delegati all'interno di un metodo delegato.
Eredita <NSObjectNSObject>.
Richiamato quando viene stabilita una connessione al dispositivo.
- Parameters
-
deviceManager | The device manager. |
- (void) deviceManager: |
|
(GCKDeviceManager *) |
deviceManager |
didFailToConnectWithError: |
|
(NSError *) |
error |
|
|
| |
|
optional |
Richiamato quando la connessione al dispositivo non è riuscita.
Puoi rilasciare l'oggetto GCKDeviceManager da questo callback.
- Parameters
-
deviceManager | The device manager. |
error | The error that caused the connection to fail. |
- (void) deviceManager: |
|
(GCKDeviceManager *) |
deviceManager |
didDisconnectWithError: |
|
(NSError *__nullable) |
error |
|
|
| |
|
optional |
Richiamato quando la connessione al dispositivo viene terminata.
Puoi rilasciare l'oggetto GCKDeviceManager da questo callback.
- Parameters
-
deviceManager | The device manager. |
error | The error that caused the disconnection; nil if there was no error (for example, an intentional disconnect). |
Richiamato quando la connessione al dispositivo è stata sospesa, possibilmente temporaneamente.
Quando una connessione viene sospesa, Gestione dispositivi tenta automaticamente di ristabilire la connessione al momento opportuno. L'applicazione chiamante non deve tentare di forzare la riconnessione.
- Parameters
-
deviceManager | The device manager. |
reason | The reason for the suspension. |
- (void) deviceManagerDidResumeConnection: |
|
(GCKDeviceManager *) |
deviceManager |
rejoinedApplication: |
|
(BOOL) |
rejoinedApplication |
|
|
| |
|
optional |
Richiamato quando viene ripristinata una connessione del dispositivo precedentemente sospesa.
- Parameters
-
deviceManager | The device manager. |
rejoinedApplication | If a connection had been established to a receiver application at the time of the suspension, this flag indicates whether that application has been successfully re-joined. This value would be NO if, for example, the application was terminated during the time that the device manager was attempting to re-establish its connection to the device. |
- (void) deviceManager: |
|
(GCKDeviceManager *) |
deviceManager |
didConnectToCastApplication: |
|
(GCKApplicationMetadata *) |
applicationMetadata |
sessionID: |
|
(NSString *) |
sessionID |
launchedApplication: |
|
(BOOL) |
launchedApplication |
|
|
| |
|
optional |
Richiamato quando un'applicazione viene avviata o collegata.
- Parameters
-
deviceManager | The device manager. |
applicationMetadata | Metadata about the application. |
sessionID | The current application session ID that is active on the receiver. |
launchedApplication | YES if the application was launched as part of the connection, or NO if the application was already running and was joined. |
- (void) deviceManager: |
|
(GCKDeviceManager *) |
deviceManager |
didFailToConnectToApplicationWithError: |
|
(NSError *) |
error |
|
|
| |
|
optional |
Chiamata quando la connessione a un'applicazione non riesce.
- Parameters
-
deviceManager | The device manager. |
error | The error that caused the failure. |
- (void) deviceManager: |
|
(GCKDeviceManager *) |
deviceManager |
didDisconnectFromApplicationWithError: |
|
(NSError *__nullable) |
error |
|
|
| |
|
optional |
Richiamato in caso di disconnessione dall'applicazione corrente.
- Parameters
-
deviceManager | The device manager. |
error | The error that caused the disconnect, or nil if this was a normal disconnect. |
Chiamata quando una richiesta di interruzione viene completata correttamente.
- Parameters
-
deviceManager | The device manager. |
- (void) deviceManager: |
|
(GCKDeviceManager *) |
deviceManager |
didFailToStopApplicationWithError: |
|
(NSError *) |
error |
|
|
| |
|
optional |
Richiamato quando la richiesta di interruzione di un'applicazione non va a buon fine.
- Parameters
-
deviceManager | The device manager. |
error | The error that caused the failure. |
Richiamato ogni volta che i metadati dell'applicazione per l'applicazione attualmente in esecuzione sono cambiati.
- Parameters
-
deviceManager | The device manager. |
metadata | The application metadata. May be nil if no application is currently running. |
- (void) deviceManager: |
|
(GCKDeviceManager *) |
deviceManager |
didReceiveApplicationStatusText: |
|
(NSString *__nullable) |
applicationStatusText |
|
|
| |
|
optional |
Richiamato ogni volta che il testo dello stato dell'applicazione in esecuzione è cambiato.
- Parameters
-
deviceManager | The device manager. |
applicationStatusText | The application status text. May be nil if no application is currently running or if the application did not report any status text. |
- (void) deviceManager: |
|
(GCKDeviceManager *) |
deviceManager |
volumeDidChangeToLevel: |
|
(float) |
volumeLevel |
isMuted: |
|
(BOOL) |
isMuted |
|
|
| |
|
optional |
Richiamato ogni volta che il volume cambia.
- Parameters
-
deviceManager | The device manager. |
volumeLevel | The current device volume level. |
isMuted | The current device mute state. |
Richiamato ogni volta che lo stato dell'input attivo cambia.
- Parameters
-
deviceManager | The device manager. |
activeInputStatus | The active input status. |
Richiamato ogni volta che lo stato di standby cambia.
- Parameters
-
deviceManager | The device manager. |
standbyStatus | The standby status. |
- (void) deviceManager: |
|
(GCKDeviceManager *) |
deviceManager |
request: |
|
(NSInteger) |
requestID |
didFailWithError: |
|
(NSError *) |
error |
|
|
| |
|
optional |
Richiamato quando un'operazione asincrona non è riuscita.
- Parameters
-
deviceManager | The device manager. |
requestID | The ID of the request that failed. |
error | The error. |
Chiamata quando viene stabilita una connessione in modalità ospite al dispositivo.
- Parameters
-
deviceManager | The device manager. |
guestModeDevice | The device object for the concrete guest mode device. |