Exemple #1
0
 /** Start devices threads */
 private void startThreads() {
   for (Ipx800DeviceConfig config : Ipx800Config.INSTANCE.getDevices().values()) {
     Ipx800DeviceConnector thread = new Ipx800DeviceConnector(config);
     thread.start();
     devices.put(config.name, thread);
   }
 }