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

LocalCollisionEvent

public class LocalCollisionEvent extends SessionEvent
Informs the RTP client that the SSRC it was using collided with another SSRC in the session. A new SSRC is provided for the client's use; however, the client can override this value by returning a different one.

Fields Summary
private ReceiveStream
recvStream
The ReceiveStream object with the colliding SSRC
private long
newSSRC
The new SSRC that the SessionManager will use for sending stream, unless the client returns a different value
Constructors Summary
public LocalCollisionEvent(SessionManager from, ReceiveStream recvStream, long newSSRC)

	super(from);
	this.recvStream = recvStream;
	this.newSSRC = newSSRC;
    
Methods Summary
public longgetNewSSRC()

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

	return recvStream;