AI-generated Key Takeaways
-
The
GCKGenericChannelDelegate
protocol defines methods for interacting with a generic Cast channel. -
It provides callbacks for receiving text messages, connection status changes, and changes in the channel's writable state.
-
Delegate methods allow developers to respond to events like receiving messages, channel connections, disconnections, and writability changes.
-
This protocol inherits from
GCKCastChannelNSObject
and is used when subclassingGCKCastChannel
is not desired.
Overview
The GCKGenericChannel delegate protocol.
Inherits <GCKCastChannelNSObject>.
Instance Method Summary | |
(void) | - castChannel:didReceiveTextMessage:withNamespace: |
Called when a text message has been received on the channel. More... | |
(void) | - castChannelDidConnect: |
Called when the channel has been connected, indicating that messages can now be exchanged with the Cast device over the channel. More... | |
(void) | - castChannelDidDisconnect: |
Called when the channel has been disconnected, indicating that messages can no longer be exchanged with the Cast device over the channel. More... | |
(void) | - castChannel:didChangeWritableState: |
Called when the writable state of the channel has changed. More... | |
Method Detail
- (void) castChannel: | (GCKGenericChannel *) | channel | |
didReceiveTextMessage: | (NSString *) | message | |
withNamespace: | (NSString *) | protocolNamespace | |
Called when a text message has been received on the channel.
|
optional |
Called when the channel has been connected, indicating that messages can now be exchanged with the Cast device over the channel.
- Parameters
-
channel The channel.
|
optional |
Called when the channel has been disconnected, indicating that messages can no longer be exchanged with the Cast device over the channel.
- Parameters
-
channel The channel.
|
optional |
Called when the writable state of the channel has changed.
- Parameters
-
channel The channel. writable Whether the channel is now writable.
- Since
- 4.0