/**
  * This is the handler for a String packet
  *
  * @param name A string of what type of data to get
  * @param body A string of the content
  */
 public void onRxString(String name, String body) {
   for (IOpenIgtPacketListener l : listeners) {
     l.onRxString(name, body);
   }
 }