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

ReceiveStreamEvent

public class ReceiveStreamEvent extends RTPEvent
The ReceiveStreamEvent will notify a listener of all events that are received on a particular ReceiveStream. This allows the user to get details on all the ReceiveStreams as they transition through various states. ReceiveStreamEvents can be one of ActiveReceiveStreamEvent ApplicationEvent InactiveReceiveStreamEvent NewReceiveStreamEvent PayloadChangeEvent ReceiveStreamMappedEvent TimeoutEvent

Fields Summary
private ReceiveStream
recvStream
private Participant
participant
Constructors Summary
public ReceiveStreamEvent(SessionManager from, ReceiveStream stream, Participant participant)

    
      
			       
			       
	super(from);
	recvStream = stream;
	this.participant = participant;
    
Methods Summary
public javax.media.rtp.ParticipantgetParticipant()

	return participant;
    
public javax.media.rtp.ReceiveStreamgetReceiveStream()

	return recvStream;