class TRtpEvent |
An RTP event.
An event is generated when anything happens that a client might want to know about. The class encapulates two pieces of information: 1. An event type as defined by a TRtpEventType value. 2. Additional information whose meaning is dependent on the event type.
Additional information may be implicitly associated with the event, but still needs to be fetched from another object, for example, when processing an ERtpPacketReceived event, the packet (represented by a RRtpReceivePacket handle) must be obtained from the receive stream (represented by a RRtpReceiveStream handle).
Events are always associated with either an RTP session, a send stream or a receive stream, and this class has functions for getting the corresponding handle.
Public Member Functions | |
---|---|
TRtpEvent(TRtpEventType, TInt, TAny *) | |
IMPORT_C TBool | IsReceiveSourceEvent() |
IMPORT_C TBool | IsSendSourceEvent() |
IMPORT_C TBool | IsSessionEvent() |
IMPORT_C RRtpReceiveSource | ReceiveSource() |
IMPORT_C RRtpSendSource | SendSource() |
IMPORT_C RRtpSession | Session() |
TInt | Status() |
TRtpEventType | Type() |
Private Attributes | |
---|---|
TAny * | iData |
TInt | iStatus |
TRtpEventType | iType |
IMPORT_C | TRtpEvent | ( | TRtpEventType | aType, |
TInt | aStatus, | |||
TAny * | aData | |||
) |
Constructor.
TRtpEventType aType | The event type. |
TInt aStatus | The event status. |
TAny * aData | Additional data that is dependent on the event type. |
IMPORT_C TBool | IsReceiveSourceEvent | ( | ) | const |
Tests whether this event is associated with a receive stream.
IMPORT_C TBool | IsSendSourceEvent | ( | ) | const |
Tests whether this event is associated with a send stream.
IMPORT_C TBool | IsSessionEvent | ( | ) | const |
Tests whether this event is associated with an RTP session.
IMPORT_C RRtpReceiveSource | ReceiveSource | ( | ) | const |
Gets a handle to the receive stream associated with this event.
This function should only be called for events that are associated with a receive stream, otherwise it raises a panic.
IMPORT_C RRtpSendSource | SendSource | ( | ) | const |
Gets a handle to the send stream associated with this event.
This function should only be called for events that are associated with a send stream, otherwise it raises a panic.
IMPORT_C RRtpSession | Session | ( | ) | const |
Gets a handle to the session associated with this event.
This function should only be called for events that are associated with an RTP session, otherwise it raises a panic.
Copyright ©2010 Nokia Corporation and/or its subsidiary(-ies).
All rights
reserved. Unless otherwise stated, these materials are provided under the terms of the Eclipse Public License
v1.0.