FileDocCategorySizeDatePackage
SenderReportEvent.javaAPI DocJMF 2.1.1e906Mon May 12 12:20:40 BST 2003javax.media.rtp.event

SenderReportEvent

public class SenderReportEvent extends RemoteEvent
Informs the RTP listener that an RTCP sender report (SR) has been received. The Participant sending the SR is available by calling getParticipant() on the senderReport object. The RTPStream representing the stream being reported on is available by calling getStream() on the senderReport object.

Fields Summary
private SenderReport
report
The RTCP sender report
Constructors Summary
public SenderReportEvent(SessionManager from, SenderReport report)

	super(from);
	this.report = report;
    
Methods Summary
public javax.media.rtp.rtcp.SenderReportgetReport()
The RTCP sender report

	return report;