Ringkasan
Protokol delegasi GCKDeviceManager.
Kecuali jika dinyatakan lain, pemanggil tidak boleh melepaskan objek GCKDeviceManager yang didelegasikan dari dalam metode delegasi.
Mewarisi <NSObjectNSObject>.
Ringkasan Metode Instance | |
(void) | - deviceManagerDidConnect: |
Dipanggil saat koneksi dibuat ke perangkat. Selengkapnya... | |
(void) | - deviceManager:didFailToConnectWithError: |
Dipanggil saat koneksi ke perangkat gagal. Selengkapnya... | |
(void) | - deviceManager:didDisconnectWithError: |
Dipanggil saat koneksi ke perangkat dihentikan. Selengkapnya... | |
(void) | - deviceManager:didSuspendConnectionWithReason: |
Dipanggil saat koneksi ke perangkat telah ditangguhkan, mungkin untuk sementara. Selengkapnya... | |
(void) | - deviceManagerDidResumeConnection:rejoinedApplication: |
Dipanggil saat koneksi perangkat yang sebelumnya ditangguhkan telah dibuat kembali. Selengkapnya... | |
(void) | - deviceManager:didConnectToCastApplication:sessionID:launchedApplication: |
Dipanggil saat aplikasi telah diluncurkan atau bergabung. Selengkapnya... | |
(void) | - deviceManager:didFailToConnectToApplicationWithError: |
Dipanggil saat menyambungkan ke aplikasi gagal. Selengkapnya... | |
(void) | - deviceManager:didDisconnectFromApplicationWithError: |
Dipanggil saat terputus dari aplikasi saat ini. Selengkapnya... | |
(void) | - deviceManagerDidStopApplication: |
Dipanggil saat permintaan berhenti aplikasi berhasil diselesaikan. Selengkapnya... | |
(void) | - deviceManager:didFailToStopApplicationWithError: |
Dipanggil saat permintaan berhenti aplikasi gagal. Selengkapnya... | |
(void) | - deviceManager:didReceiveApplicationMetadata: |
Dipanggil setiap kali metadata aplikasi untuk aplikasi yang sedang berjalan telah berubah. Selengkapnya... | |
(void) | - deviceManager:didReceiveApplicationStatusText: |
Dipanggil setiap kali teks status aplikasi yang sedang berjalan telah diubah. Selengkapnya... | |
(void) | - deviceManager:volumeDidChangeToLevel:isMuted: |
Dipanggil setiap kali volume berubah. Selengkapnya... | |
(void) | - deviceManager:didReceiveActiveInputStatus: |
Dipanggil setiap kali status input aktif berubah. Selengkapnya... | |
(void) | - deviceManager:didReceiveStandbyStatus: |
Dipanggil setiap kali status standby berubah. Selengkapnya... | |
(void) | - deviceManager:request:didFailWithError: |
Dipanggil saat operasi asinkron gagal. Selengkapnya... | |
(void) | - deviceManagerDidPair:withGuestModeDevice: |
Dipanggil saat koneksi mode tamu telah dibuat ke perangkat. Selengkapnya... | |
Detail Metode
|
optional |
Dipanggil saat koneksi dibuat ke perangkat.
- Parameters
-
deviceManager The device manager.
|
optional |
Dipanggil saat koneksi ke perangkat gagal.
Anda dapat melepaskan objek GCKDeviceManager dari dalam callback ini dengan aman.
- Parameters
-
deviceManager The device manager. error The error that caused the connection to fail.
|
optional |
Dipanggil saat koneksi ke perangkat dihentikan.
Anda dapat melepaskan objek GCKDeviceManager dari dalam callback ini dengan aman.
- Parameters
-
deviceManager The device manager. error The error that caused the disconnection; nil
if there was no error (for example, an intentional disconnect).
|
optional |
Dipanggil saat koneksi ke perangkat telah ditangguhkan, mungkin untuk sementara.
Jika koneksi ditangguhkan, pengelola perangkat akan otomatis mencoba menghubungkan ulang pada waktu yang sesuai. Aplikasi panggilan tidak boleh mencoba memaksa penyambungan ulang itu sendiri.
- Parameters
-
deviceManager The device manager. reason The reason for the suspension.
|
optional |
Dipanggil saat koneksi perangkat yang sebelumnya ditangguhkan telah dibuat kembali.
- 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.
|
optional |
Dipanggil saat aplikasi telah diluncurkan atau bergabung.
- 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, orNO
if the application was already running and was joined.
|
optional |
Dipanggil saat menyambungkan ke aplikasi gagal.
- Parameters
-
deviceManager The device manager. error The error that caused the failure.
|
optional |
Dipanggil saat terputus dari aplikasi saat ini.
- Parameters
-
deviceManager The device manager. error The error that caused the disconnect, or nil
if this was a normal disconnect.
|
optional |
Dipanggil saat permintaan berhenti aplikasi berhasil diselesaikan.
- Parameters
-
deviceManager The device manager.
|
optional |
Dipanggil saat permintaan berhenti aplikasi gagal.
- Parameters
-
deviceManager The device manager. error The error that caused the failure.
|
optional |
Dipanggil setiap kali metadata aplikasi untuk aplikasi yang sedang berjalan telah berubah.
- Parameters
-
deviceManager The device manager. metadata The application metadata. May be nil if no application is currently running.
|
optional |
Dipanggil setiap kali teks status aplikasi yang sedang berjalan telah diubah.
- 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.
|
optional |
Dipanggil setiap kali volume berubah.
- Parameters
-
deviceManager The device manager. volumeLevel The current device volume level. isMuted The current device mute state.
|
optional |
Dipanggil setiap kali status input aktif berubah.
- Parameters
-
deviceManager The device manager. activeInputStatus The active input status.
|
optional |
Dipanggil setiap kali status standby berubah.
- Parameters
-
deviceManager The device manager. standbyStatus The standby status.
|
optional |
Dipanggil saat operasi asinkron gagal.
- Parameters
-
deviceManager The device manager. requestID The ID of the request that failed. error The error.
|
optional |
Dipanggil saat koneksi mode tamu telah dibuat ke perangkat.
- Parameters
-
deviceManager The device manager. guestModeDevice The device object for the concrete guest mode device.