本文整理汇总了Java中javax.media.rtp.Participant类的典型用法代码示例。如果您正苦于以下问题:Java Participant类的具体用法?Java Participant怎么用?Java Participant使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Participant类属于javax.media.rtp包,在下文中一共展示了Participant类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: update
import javax.media.rtp.Participant; //导入依赖的package包/类
public void update( RemoteEvent event) {
String timestamp= getTimestamp();
if( event instanceof ReceiverReportEvent) {
ReceiverReport rr= ((ReceiverReportEvent) event).getReport();
StringBuffer sb= new StringBuffer();
sb.append( timestamp + " RR");
if( rr != null) {
Participant participant= rr.getParticipant();
if( participant != null) {
sb.append( " from " + participant.getCNAME());
sb.append( " ssrc=" + rr.getSSRC());
} else {
sb.append( " ssrc=" + rr.getSSRC());
}
tx.rtcpReport( sb.toString());
}
} else {
System.out.println( "RemoteEvent: " + event);
}
}
示例2: update
import javax.media.rtp.Participant; //导入依赖的package包/类
/**
* SessionListener.
*/
public synchronized void update(SessionEvent evt) {
if (evt instanceof NewParticipantEvent) {
Participant p = ((NewParticipantEvent)evt).getParticipant();
System.err.println(" - A new participant had just joined: " + p.getCNAME());
}
}
示例3: update
import javax.media.rtp.Participant; //导入依赖的package包/类
/**
* JingleSessionListener.
*/
public synchronized void update(SessionEvent evt) {
if (evt instanceof NewParticipantEvent) {
Participant p = ((NewParticipantEvent) evt).getParticipant();
LOGGER.fine(" - A new participant had just joined: " + p.getCNAME());
}
}
示例4: update
import javax.media.rtp.Participant; //导入依赖的package包/类
/**
* JingleSessionListener.
*/
public synchronized void update(SessionEvent evt) {
if (evt instanceof NewParticipantEvent) {
Participant p = ((NewParticipantEvent) evt).getParticipant();
LOGGER.error(" - A new participant had just joined: " + p.getCNAME());
}
}
示例5: update
import javax.media.rtp.Participant; //导入依赖的package包/类
/**
* JingleSessionListener.
*/
public synchronized void update(SessionEvent evt) {
if (evt instanceof NewParticipantEvent) {
Participant p = ((NewParticipantEvent) evt).getParticipant();
System.err.println(" - A new participant had just joined: " + p.getCNAME());
}
}