@Override
 public void shutdown() {
   super.shutdown();
   try {
     mqChannel.close();
     mqConnection.close();
   } catch (IOException e) {
     throw new RuntimeException(e);
   }
 }