GCKDeviceManager デリゲート プロトコル。
特に明記されていない限り、呼び出し元はデリゲート メソッド内から委任 GCKDeviceManager オブジェクトを解放してはなりません。
<NSObjectNSObject> を継承します。
デバイスへの接続を確立したときに呼び出されます。
- Parameters
-
deviceManager | The device manager. |
- (void) deviceManager: |
|
(GCKDeviceManager *) |
deviceManager |
didFailToConnectWithError: |
|
(NSError *) |
error |
|
|
| |
|
optional |
デバイスへの接続に失敗したときに呼び出されます。
このコールバック内から GCKDeviceManager オブジェクトを解放しても安全です。
- Parameters
-
deviceManager | The device manager. |
error | The error that caused the connection to fail. |
- (void) deviceManager: |
|
(GCKDeviceManager *) |
deviceManager |
didDisconnectWithError: |
|
(NSError *__nullable) |
error |
|
|
| |
|
optional |
デバイスへの接続が終了すると呼び出されます。
このコールバック内から GCKDeviceManager オブジェクトを解放しても安全です。
- Parameters
-
deviceManager | The device manager. |
error | The error that caused the disconnection; nil if there was no error (for example, an intentional disconnect). |
デバイスへの接続が一時停止されたときに呼び出されます(一時的に停止する場合があります)。
接続が中断されると、デバイス マネージャーは適切なタイミングで自動的に接続の確立を自動的に試行します。呼び出し元アプリは、自動的に再接続しようとしないでください。
- Parameters
-
deviceManager | The device manager. |
reason | The reason for the suspension. |
- (void) deviceManagerDidResumeConnection: |
|
(GCKDeviceManager *) |
deviceManager |
rejoinedApplication: |
|
(BOOL) |
rejoinedApplication |
|
|
| |
|
optional |
以前に停止したデバイス接続が再確立されたときに呼び出されます。
- 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 |
アプリが起動されたとき、または参加されたときに呼び出されます。
- 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 |
アプリケーションへの接続に失敗したときに呼び出されます。
- Parameters
-
deviceManager | The device manager. |
error | The error that caused the failure. |
- (void) deviceManager: |
|
(GCKDeviceManager *) |
deviceManager |
didDisconnectFromApplicationWithError: |
|
(NSError *__nullable) |
error |
|
|
| |
|
optional |
現在のアプリから切断されると呼び出されます。
- Parameters
-
deviceManager | The device manager. |
error | The error that caused the disconnect, or nil if this was a normal disconnect. |
アプリケーションの停止リクエストが正常に完了したときに呼び出されます。
- Parameters
-
deviceManager | The device manager. |
- (void) deviceManager: |
|
(GCKDeviceManager *) |
deviceManager |
didFailToStopApplicationWithError: |
|
(NSError *) |
error |
|
|
| |
|
optional |
アプリケーションの停止リクエストが失敗したときに呼び出されます。
- Parameters
-
deviceManager | The device manager. |
error | The error that caused the failure. |
現在実行中のアプリケーションのアプリケーション メタデータが変更されたときに呼び出されます。
- 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 |
現在実行中のアプリケーションのステータス テキストが変更されるたびに呼び出されます。
- 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 |
音量が変化するたびに呼び出されます。
- Parameters
-
deviceManager | The device manager. |
volumeLevel | The current device volume level. |
isMuted | The current device mute state. |
アクティブな入力ステータスが変更されるたびに呼び出されます。
- Parameters
-
deviceManager | The device manager. |
activeInputStatus | The active input status. |
スタンバイ ステータスが変化するたびに呼び出されます。
- Parameters
-
deviceManager | The device manager. |
standbyStatus | The standby status. |
- (void) deviceManager: |
|
(GCKDeviceManager *) |
deviceManager |
request: |
|
(NSInteger) |
requestID |
didFailWithError: |
|
(NSError *) |
error |
|
|
| |
|
optional |
非同期オペレーションが失敗した場合に呼び出されます。
- Parameters
-
deviceManager | The device manager. |
requestID | The ID of the request that failed. |
error | The error. |
デバイスに対してゲストモード接続が確立されたときに呼び出されます。
- Parameters
-
deviceManager | The device manager. |
guestModeDevice | The device object for the concrete guest mode device. |