Package com.neophob.sematrix.core.osc

Examples of com.neophob.sematrix.core.osc.PixelControllerOscServer


   */
  public synchronized void initDaemons(ApplicationConfigurationHelper ph) {
    //Start OSC Server (OSC Interface)
    try {          
      int listeningOscPort = Integer.parseInt(ph.getProperty(ConfigConstant.NET_OSC_LISTENING_PORT, "9876") );
      oscServer = new PixelControllerOscServer(listeningOscPort);
      oscServer.startServer();
      //register osc server in the statistic class
      this.pixConStat.setOscServerStatistics(oscServer);
    } catch (Exception e) {
      LOG.log(Level.SEVERE, "failed to start OSC Server", e);
View Full Code Here

TOP

Related Classes of com.neophob.sematrix.core.osc.PixelControllerOscServer

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.