Module Interface IRTPPayloadReceiver

Package: inet.transport.rtp
File: src/transport/rtp/RTPPayloadReceiver.ned

Interface for RTP Payload Receivers.

These modules are internal to the RTP module; instances are created and connected dynamically by RTPProfile.

IRTPPayloadReceiver

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Parameters:

Name Type Default value Description
outputFileName string

Source code:

//
// Interface for \RTP Payload Receivers.
//
// These modules are internal to the RTP module; instances are created
// and connected dynamically by RTPProfile.
//
moduleinterface IRTPPayloadReceiver
{
    parameters:
        string outputFileName;

    gates:
        input profileIn @labels(RTPInnerPacket);
        output profileOut @labels(RTPInnerPacket);
}