Examples of VoiceUserLockedEvent


Examples of org.bigbluebutton.webconference.voice.events.VoiceUserLockedEvent

   
    recorder.record(room, evt);
  }
 
  private void recordParticipantLockedEvent(VoiceConferenceEvent event, String room) {
    VoiceUserLockedEvent ple = (VoiceUserLockedEvent) event;

    ParticipantLockedVoiceRecordEvent evt = new ParticipantLockedVoiceRecordEvent();
    evt.setMeetingId(room);
    evt.setTimestamp(genTimestamp());
    evt.setBridge(event.getRoom());
    evt.setParticipant(((VoiceUserLockedEvent)event).getUserId().toString());
    evt.setLocked(ple.isLocked());
   
    recorder.record(room, evt);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.