GCKSession 類別
沿用 NSObject。
沿用自 GCKCastSession。
- (instancetype) initWithDevice: |
|
(GCKDevice *) |
device |
traits: |
|
(GCKSessionTraits *) |
traits |
sessionID: |
|
(NSString *__nullable) |
sessionID |
|
|
| |
針對特定裝置初始化新的工作階段物件。
- Parameters
-
device | The device. |
traits | The session traits. |
sessionID | The session ID of an existing session, if this object will be used to resume a session; otherwise nil if it will be used to start a new session. |
設定裝置的音量。
這是非同步作業。預設的實作方式是失敗,導致發生 GCKErrorCodeSupportedFeature 錯誤;
- Parameters
-
- 傳回
- 用於追蹤要求的 GCKRequest 物件。
- 辛策
- 3.4;在先前的架構版本中,此方法會傳回
void
。
設定裝置的靜音狀態。
這是非同步作業。預設的實作方式是失敗,導致發生 GCKErrorCodeSupportedFeature 錯誤;
- Parameters
-
- 傳回
- 用於追蹤要求的 GCKRequest 物件。
- 辛策
- 3.4;在先前的架構版本中,此方法會傳回
void
。
- (void) endAndStopCasting: |
|
(BOOL) |
stopCasting |
|
結束工作階段。
這是非同步作業。必須使用子類別覆寫。
- Parameters
-
stopCasting | Whether to stop casting content to the receiver. |
由「GCKSession(Protected)」類別提供。
- (void) notifyDidStartWithSessionID: |
|
(NSString *) |
sessionID |
|
- (void) notifyDidFailToStartWithError: |
|
(NSError *) |
error |
|
- (void) notifyDidEndWithError: |
|
(NSError *__nullable) |
error |
|
由子類別呼叫,以通知架構已經結束工作階段。
- Parameters
-
error | The error that caused the session to end, if any. Should be nil if the session was ended intentionally. |
由「GCKSession(Protected)」類別提供。
- (void) notifyDidReceiveDeviceVolume: |
|
(float) |
volume |
muted: |
|
(BOOL) |
muted |
|
|
| |
子類別呼叫時,系統會通知架構從裝置接收到更新的裝置音量和靜音狀態。
- Parameters
-
volume | The device's current volume. Must be in the range [0, 1.0]; |
muted | The device's current mute state. |
由「GCKSession(Protected)」類別提供。
- (void) notifyDidReceiveDeviceStatus: |
|
(NSString *__nullable) |
statusText |
|
- (NSString*) deviceStatusText |
|
readnonatomiccopy |
- (float) currentDeviceVolume |
|
readnonatomicassign |
- (BOOL) currentDeviceMuted |
|
readnonatomicassign |
目前的媒體中繼資料 (如果有的話)。
如果工作階段不支援媒體命名空間,或是接收器目前未載入媒體,則值為 nil
。
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2022-12-05 (世界標準時間)。
[null,null,["上次更新時間:2022-12-05 (世界標準時間)。"],[[["`GCKSession` is an abstract base class representing a session with a receiver device, requiring subclasses to implement core session management methods."],["Subclasses must handle session lifecycle events like starting, ending, suspending, and resuming, using designated notifier methods to update the framework."],["Session creation and control are managed by `GCKSessionManager` which utilizes `GCKDeviceProvider` to create the session and delegates requests to the `GCKSession` object."],["The `GCKSession` class provides properties for accessing session details such as the associated device, session ID, connection state, and device status."],["While `GCKSession` offers methods for controlling device volume and mute state, the default implementations are no-ops, and subclasses can override them for specific device support."]]],[]]