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

SendStreamEvent

public class SendStreamEvent extends RTPEvent
The SendStreamEvent will notify a listener of all events that are received on a particular SendStream. This allows the user to get details on all the SendStreams as they transition through various states. SendStreamEvents can be one of ActiveSendStreamEvent InactiveSendStreamEvent NewSendStreamEvent SendPayloadChangeEvent

Fields Summary
private SendStream
sendStream
private Participant
participant
Constructors Summary
public SendStreamEvent(SessionManager from, SendStream stream, Participant participant)

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

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

	return sendStream;