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

NewParticipantEvent

public class NewParticipantEvent extends SessionEvent
Informs the RTP listener that an RTCP packet has just been received from a heretofore unknown participant. Thus, an Participant object has been created to represent the new participant.

Fields Summary
private Participant
participant
The new Participant object.
Constructors Summary
public NewParticipantEvent(SessionManager from, Participant participant)

	super(from);
	this.participant = participant;
    
Methods Summary
public javax.media.rtp.ParticipantgetParticipant()
The new Participant object.

	return participant;