public String getStatus() {
   DataThread<V> thread = _thread;
   if (thread == null) return "dead";
   return thread.getStatus() + " : " + thread.getState();
 }