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

RTPEvent

public class RTPEvent extends MediaEvent
The Base class of all event notification in the SessionManager. All RTP Events must extend this base class

Fields Summary
private SessionManager
eventSrc
The SessionManager generating the RTPEvent
Constructors Summary
public RTPEvent(SessionManager from)
RTPEvent constructor takes in the SessionManager which has generated this event as a argument to its constructor

param
from The SessionManager generating this event

	super(from);
	eventSrc = from;
    
Methods Summary
public javax.media.rtp.SessionManagergetSessionManager()
The SessionManager which is the source of this RTPEvent

	return eventSrc;
    
public java.lang.ObjectgetSource()
The source of this RTPEvent

	return eventSrc;
    
public java.lang.StringtoString()
The String representation of this event

	return getClass().getName() + "[source = " + eventSrc+ "]";