Class: Message

  • cast.framework.system.Message represents a custom message received from a sender.

  • Custom messages can be listened for using the cast.framework.CastReceiverContext#addCustomMessageListener method.

  • The Message class has a constructor that takes the message type, sender ID, and data as parameters.

  • Key properties of a Message include data (the payload), senderId (the sender's ID), and type (always "message").

Constructor

Message

new Message(type, senderId, data)

Parameter

type

string

The message type. It is always "message".

senderId

string

The sender ID.

data

any type

The message payload.

Value must not be null.

Properties

data

constant

non-null any type

The message payload.

senderId

constant

string

The sender ID.

type

The message type. It is always "message".