Messages of type RTPSenderStatusMessage are used to send information from an rtp sender module to the application. Within this class a status string is defined in which the information is stored. This can be "PLAYING", "STOPPED" or "FINISHED". If a message must provide more information than just a string, a new class defining this parameter can derived.
The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
// // Messages of type ~RTPSenderStatusMessage are used to send information // from an rtp sender module to the application. Within this class a status // string is defined in which the information is stored. This can be "PLAYING", // "STOPPED" or "FINISHED". // If a message must provide more information than just a string, a new class // defining this parameter can derived. // enum RTPSenderStatus { RTP_SENDER_STATUS_PLAYING = 1; RTP_SENDER_STATUS_FINISHED = 2; RTP_SENDER_STATUS_STOPPED = 3; RTP_SENDER_STATUS_PAUSED = 4; }