Package org.apache.openmeetings.remote.red5

Examples of org.apache.openmeetings.remote.red5.ScopeApplicationAdapter


       
        /* #################################
         * Send Cursor to trigger HTTP-Connections
         *
         */
        ScopeApplicationAdapter scopeApplicationAdapter = ScopeApplicationAdapter.getInstance();
        if (scopeApplicationAdapter != null) {
          ScopeApplicationAdapter.getInstance().sendScreenSharingCursorPos(cPosition);
        }
       
        sharingSessions.put(cPosition.getPublicSID(),serverSharingSessionBean);
View Full Code Here


           
            Date d = new Date();
           
            log.debug("SEND Buffer Full Message -2- Start ScreenSharing or Recording for all Clients "+(d.getTime() - serverSharingSessionBean.getSessionStarted().getTime()));
           
            ScopeApplicationAdapter scopeApplicationAdapter = ScopeApplicationAdapter.getInstance();
            if (scopeApplicationAdapter != null) {
              scopeApplicationAdapter.sendScreenSharingMessage(serverSharingSessionBean);
            }
           
            if (serverSharingSessionBean.isSharing()) {
             
             
           
            }
           
            if (serverSharingSessionBean.isRecording()) {
             
              //TODO: Add Scheduler to produce Frame capture
             
              //For Testing Write all Images to a standard dir
              //writeImagesToStandardDirectory(serverSharingSessionBean);
             
             
            }
           
            serverSharingSessionBean.setSendCompleteFlag(true);
           
           
          } else {
           
            /* #################################
             * Send Screen to ODSP-Connections
             *
             */
            ServerSocketMinaProcess.sendMessageToSession(serverFrameBean);
           
            /* #################################
             * Send Screen to trigger HTTP-Connections
             *
             */
            ScopeApplicationAdapter scopeApplicationAdapter = ScopeApplicationAdapter.getInstance();
            if (scopeApplicationAdapter != null) {
              ScopeApplicationAdapter.getInstance().sendScreenSharingFrame(serverFrameBean);
            }
           
          }
View Full Code Here

         
          /* #################################
           * Send Screen to trigger HTTP-Connections
           *
           */
          ScopeApplicationAdapter scopeApplicationAdapter = ScopeApplicationAdapter.getInstance();
          if (scopeApplicationAdapter != null) {
            serverSharingSessionBean.setDeleted(true);
            ScopeApplicationAdapter.getInstance().sendScreenSharingMessage(serverSharingSessionBean);
          }
         
View Full Code Here

         
          /* #################################
           * Send Screen to trigger HTTP-Connections
           *
           */
          ScopeApplicationAdapter scopeApplicationAdapter = ScopeApplicationAdapter.getInstance();
          if (scopeApplicationAdapter != null) {
            serverSharingSessionBean.setDeleted(true);
            ScopeApplicationAdapter.getInstance().sendScreenSharingMessage(serverSharingSessionBean);
          }
         
View Full Code Here

TOP

Related Classes of org.apache.openmeetings.remote.red5.ScopeApplicationAdapter

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.