AI-generated Key Takeaways
-
MessageReceivedListener is an interface for listening to messages from the sender.
-
The
onMessageReceivedmethod is called when a new message is received from the sender. -
The
onMessageReceivedmethod provides the message's namespace, sender ID, and the message content.
public static interface CastReceiverContext.MessageReceivedListener
Listener for listening messages that come from the sender.
Public Method Summary
| abstract void |
onMessageReceived(String namespace,
String
senderId, String message)
Called when a new message is received from the sender.
|