New problem - I have a thread in JmolOpenNIAdapter to keep the sensor
data fresh:

private Runnable update = new Runnable() {
  public void run() {
    while(openni_server_running) {
      System.out.println("server thread fired");
      try {
        context.waitAnyUpdateAll();
      } catch (StatusException e) {
        e.printStackTrace();
      }
    }
  }
};

I start it in init(), which gets called by the constructor.  But it only
fires about 20 times and stops as soon as the Jmol applet is loaded. 
Could Jmol be preventing that thread from continuing?


Regards,
Benn

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Jmol-developers mailing list
Jmol-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jmol-developers

Reply via email to