Package org.openmeetings.server.beans.messages

Examples of org.openmeetings.server.beans.messages.ScreenSharingCursor


  public synchronized void sendScreenSharingCursorPos(ServerFrameCursorStatus cursorStatus) {
    try {
     
      //log.debug("sendScreenSharingCursorPos ");
     
      ScreenSharingCursor screenSharingCursor = new ScreenSharingCursor();
      screenSharingCursor.setS(cursorStatus.getPublicSID());
      screenSharingCursor.setX(cursorStatus.getX());
      screenSharingCursor.setY(cursorStatus.getY());
       
      String publicSID = cursorStatus.getPublicSID();
     
      IScope globalScope = getContext().getGlobalScope();
      IScope webAppKeyScope = globalScope.getScope(ScopeApplicationAdapter.webAppRootKey);
View Full Code Here

TOP

Related Classes of org.openmeetings.server.beans.messages.ScreenSharingCursor

Copyright © 2018 www.massapicom. 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.