LocalCollisionEventpublic 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 | recvStreamThe ReceiveStream object with the colliding SSRC | private long | newSSRCThe 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;
|
|