/*
* @(#)ReceiverReport.java 1.6 02/08/21
*
* Copyright (c) 1996-2002 Sun Microsystems, Inc. All rights reserved.
*/
package javax.media.rtp.rtcp;
/**
* Contains the methods specific to an RTCP receiver report (RR).
* This interface is subclassed from Report and is an empty
* interface. It is a "marker interface" for semantic usage in an RTP
* Session.
*
*/
public interface ReceiverReport extends Report
{
}
|